프로그래밍/Server
CentOS에서 Python 버전 변경
홍반장水_
2021. 3. 10. 14:55
반응형
CentOS에서 Python 버전 변경
hippogrammer.tistory.com/m/170
# python -V
# which python
# ls -al /usr/bin/python
# ls /usr/bin | grep python
# yum install python3
-- CentOS에 여러 버전의 파이썬이 설치되어있는 것을 확인할 수 있다.
# ls /bin | grep python
-- Update-alternatives로 파이썬 버전 등록 및 변경
# update-alternatives --config python
# update-alternatives --install /bin/python python /bin/python2.7 1
# update-alternatives --install /bin/python python /bin/python3.6 2
# update-alternatives --config python
# ls -al /bin/python
# python -V
# yum update
# vim /usr/bin/yum
내용 : #!/usr/bin/python2
# vim /usr/libexec/urlgrabber-ext-down
내용 : #!/usr/bin/python2
# yum update
# yum install python3-dev
반응형