안전하게 디폴트 python 버전 설정하기

안전하게 디폴트 python 버전 설정하기

python2 의 지원 종료가 다가오면서 python3 만 설치하여 사용하는 경우가 많은데, ubuntu 에서 디폴트 python 으로 python3 사용하려면 update-alternatives 명령을 이용합니다.

sudo update-alternatives --install 형식의 명령을 통해 안전하게 default python 을 선택하여 사용할 수 있습니다.

> sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1
update-alternatives: using /usr/bin/python3 to provide /usr/bin/python (python) in auto mode
> sudo update-alternatives --config python
There is only one alternative in link group python (providing /usr/bin/python): /usr/bin/python3
Nothing to configure.
> python
Python 3.6.9 (default, Nov  7 2019, 10:44:02) 
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> quit()

Comments

Comments powered by Disqus