Debian Bullseye 에서 update-alternatives 로 python 설정하기
Posted on 2021-08-16(월) in Debian
- OS : Debian Bullseye
목록 확인
ness@phrp ~$ sudo update-alternatives --list python
update-alternatives: 오류: no alternatives for python
설치
ness@phrp ~$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 20 2 ↵
update-alternatives: using /usr/bin/python2 to provide /usr/bin/python (python) in auto mode
ness@phrp ~$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 30
update-alternatives: using /usr/bin/python3 to provide /usr/bin/python (python) in auto mode
설치 후 목록 재확인
ness@phrp ~$ sudo update-alternatives --list python
/usr/bin/python2
/usr/bin/python3
python 버전 확인
ness@phrp ~$ python
Python 3.9.2 (default, Mar 12 2021, 04:06:34)
[GCC 10.2.1 20210110] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
ness@phrp ~$
설정
ness@phrp ~$ sudo update-alternatives --config python
대체 항목 python에 대해 (/usr/bin/python 제공) 2개 선택이 있습니다.
선택 경로 우선순위 상태
------------------------------------------------------------
* 0 /usr/bin/python3 30 자동 모드
1 /usr/bin/python2 20 수동 모드
2 /usr/bin/python3 30 수동 모드
Press <enter> to keep the current choice[*], or type selection number:
ness@phrp ~$
/끝/