본문 바로가기

Python

[Python] Mac에서 default Python 버젼 변경하기

특정 라이브러리가 3.12를 지원안해서 python 버젼을 다운그레이드해야하는 상황이다.

 

  1. Check your python version
    python3 -V
    Python 3.12.3
  1. Search python paththen you can check where is the python file installed.
    which python3 /opt/homebrew/bin/python3

  2. Change default python path
    alias python3=/opt/homebrew/bin/python3.9

  3. recheck changed python version
    python3 -V Python 3.9.19