잡동사니
[CentOS 6] Python 2.7 추가하기 본문
안녕하세요. yeTi입니다.
오늘은 CentOS 6에서 Python 2.7을 추가로 설치해보도록 하겠습니다.
설치 환경
- OS : CentOS release 6.9 (Final)
1. Python 2.7 설치를 다음과 같이 진행합니다.
cd /usr/local/src
wget https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tar.xz
yum install -y xz
unxz Python-2.7.12.tar.xz
tar xvf Python-2.7.12.tar
cd Python-2.7.12
./configure --prefix=/usr/local/python2.7 --enable-shared
make
make altinstall
2. Python 2.7의 설정을 추가합니다.
vi /etc/profile
PY27=/usr/local/python2.7
export PATH=$PATH:${PY27}/bin
export LD_LIBRARY_PATH=${PY27}/lib:$LD_LIBRARY_PATH
source /etc/profile
3. Python의 버전을 확인합니다.
- python2.7 -V
- 참고로 기존에 사용하던 Python은 남아있습니다. (python -V)
'IT > Linux' 카테고리의 다른 글
우분투에서 네트워크가 안잡히는 현상 해결 (0) | 2021.02.25 |
---|---|
[CentOS 6] 명령어 모음 (0) | 2018.08.30 |
[Linux] Command not found 해결하기 (0) | 2018.07.06 |
Comments