MacOS

  1. 원하는 버전 brew로 설치
brew install python3.8
  1. 파일 경로 확인
which python3
# /opt/homebrew/bin/python3
which python3.8
# /opt/homebrew/bin/python3.8
  1. 심볼링 링크 변경
ln -s -f /opt/homebrew/bin/python3.8 /opt/homebrew/bin/python
  1. 확인
python3 --version
# Python 3.8.20