Studying/Python
Python 3.6 설치 및 초기 설정
hongkyu
2018. 9. 30. 00:13
1. yum repository 추가
# yum install -y https://centos7.iuscommunity.org/ius-release.rpm
2. python 3.6 확인
# yum search python36
3. python 3.6 설치
# yum install -y python36u python36u-libs python36u-devel python36u-pip
4. python 3.6 설치 확인
# python3.6 -V
5. python 3.6 설치 장소 확인
# which python3.6
6. Alias 설정
# ln -s /bin/python3.6 /bin/python3
# unlink /bin/python
# ln -s /bin/python3 /bin/python
# ln -s /bin/pip3.6 /bin/pip
반응형