반응형

CentOS에서 Python 버전 변경

hippogrammer.tistory.com/m/170

 

CentOS에서 Python 버전 변경

CentIOS를 설치하면 기본적으로 python path가 2.7로 설정되어 있다. 리눅스의 Alternatives를 이용하면 python 버전을 쉽게 변경하고 관리할 수 있다. Alternatives는 기본 커맨드의 심볼릭 링크를 관리해주는

hippogrammer.tistory.com

# 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



반응형

+ Recent posts