CentOS에서 Python 버전 변경
-- Update-alternatives로 파이썬 버전 등록 및 변경
https://earthconquest.tistory.com/242
# update-alternatives --config python
# 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