-
[Python] ubuntu에 Python 버전 설정하기Programming Language/Python 2022. 7. 24. 22:01728x90
Python 버전 확인
python3 --version python --version
Python 설치경로 확인
which python which python3
Alternatives로 Python 버전 변경
1. alternatives 확인
# python sudo update-alternatives --config python # python3 sudo update-alternatives --config python3
2. alternative 등록
# python sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 2 # python3 sudo update-alternatives --install /usr/bin/python python3 /usr/bin/python3.9 1 sudo update-alternatives --install /usr/bin/python python3 /usr/bin/python3.8 2
3. alternative 변경
# python sudo update-alternatives --config python # python3 sudo update-alternatives --config python3
위 명령어 실행 시 여러 선택지를 보여준다. 원하는 버전에 맞는 번호를 선택하여 변경 가능
참고
728x90'Programming Language > Python' 카테고리의 다른 글
[Python Error] attributeerror: module 'typing' has no attribute '_specialform' (0) 2023.02.22 [Python] virtual env 설정 (0) 2022.05.08