반응형
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
반응형
'프로그래밍 > Server' 카테고리의 다른 글
KB4023057 - RDP Wrapper 10.0.19041.1202 #1509 (0) | 2021.09.27 |
---|---|
CentOS yum 패키지 삭제 (0) | 2021.04.09 |
리눅스 폴더 파일 날짜순 정렬 방법 ls -ltr (0) | 2020.01.14 |
맥북,OSX - 터미널에서 ls -a 하면 나오는 폴더 목록에 .profile 또는 .bash_profile이 없을때. (0) | 2019.04.30 |
[보안] 잘 보이는 곳에 비밀 메시지를 숨겨보자, 스테가노그래피 (0) | 2017.09.12 |