특정 라이브러리가 3.12를 지원안해서 python 버젼을 다운그레이드해야하는 상황이다.
- Check your python version
python3 -V Python 3.12.3
- Search python paththen you can check where is the python file installed.
which python3 /opt/homebrew/bin/python3 - Change default python path
alias python3=/opt/homebrew/bin/python3.9 - recheck changed python version
python3 -V Python 3.9.19
'Python' 카테고리의 다른 글
| [Clean Python] Python 코드 표현과 구문 (1) | 2024.11.24 |
|---|---|
| [Clean Python] 파이썬에서의 underscore(_, __)에 대해 (0) | 2024.11.23 |
| [Pandas] FutureWarning 에러 - Setting an item of incompatible dtype is deprecated and will raise an error in a future version of pandas. (0) | 2024.11.15 |
| [Python] __init__.py 파일에 대해 알아보자. (1) | 2024.11.14 |
| [Python] __main__ 메소드에 대해 알아보자 (0) | 2024.11.13 |