본문 바로가기
Programming Language/Python

[Python] 파이썬 기본 버전 설정

by yongee97 2022. 10. 23.

* Ubuntu 18.04

 

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.7 3
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1

sudo update-alternatives --config python

 

'Programming Language > Python' 카테고리의 다른 글

[Python] Install mmcv  (0) 2023.07.27
ModuleNotFoundError: No module named 'easydict'  (0) 2023.05.14
colab 대신 local에서 실행하는 방법  (0) 2023.05.14
[Python] Install PIP3  (0) 2023.03.07
[Python] pip3 upgrade 방법  (0) 2023.01.31