Linux CentOS 6. x 에 Python 2.7.9 설치

전환 하 다http://www.cnblogs.com/dudu/p/4294238.html
CentOS 6.6 은 Python 2.6.6 을 자체 적 으로 가지 고 있 으 며, llvm 을 컴 파일 하려 면 Python 2.7 이상 이 필요 하 다.
checking for python... /usr/bin/python
checking for python >= 2.7... not found
configure: error: found python 2.6.6 (/usr/bin/python); required >= 2.7

yum 의 최신 도 Python 2.6.6 으로 Python 만 다운로드 할 수 있 습 니 다. 2.7.9 의 소스 코드 는 스스로 컴 파일 하여 설치 합 니 다.
작업 절 차 는 다음 과 같다.
1) devtoolset 설치
yum groupinstall "Development tools"

2) 파 이 썬 컴 파일 에 필요 한 가방 설치
yum install zlib-devel
yum install bzip2-devel
yum install openssl-devel
yum install ncurses-devel
yum install sqlite-devel

3) Python 2.7.9 의 소스 코드 다운로드 및 압축 해제
cd /opt
wget --no-check-certificate https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz
tar xf Python-2.7.9.tar.xz
cd Python-2.7.9

4) 파 이 썬 컴 파일 및 설치 2.7.9
./configure --prefix=/usr/local
make && make altinstall

5) Python 명령 을 Python 2.7.9 로 가 리 킵 니 다.
ln -s /usr/local/bin/python2.7 /usr/local/bin/python

6) 파 이 썬 버 전 검사
sh
sh-4.1# python -V
Python 2.7.9

[참고 자료]
Installing python 2.7 on centos 6.3

좋은 웹페이지 즐겨찾기