python: Centos6에서 python2.7 설치

高洛峰
풀어 주다: 2016-11-17 09:48:13
원래의
1137명이 탐색했습니다.

1) python2.7 컴파일 및 설치

[root@mysql-master ~]# python -V
Python 2.6.6
查看python的版本信息(之前的yum是通过yum安装的)
[root@mysql-master src]# wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz
[root@mysql-master src]# file Python-2.7.9.tar.xz 
Python-2.7.9.tar.xz: xz compressed data
[root@mysql-master src]# xz -d Python-2.7.9.tar.xz 
[root@mysql-master src]# ls
debug  kernels  Python-2.7.9.tar
[root@mysql-master src]# tar -xf Python-2.7.9.tar 
[root@mysql-master src]# cd Python-2.7.9
[root@mysql-master Python-2.7.9]# ./configure 
[root@mysql-master Python-2.7.9]# make && make install
[root@mysql-master Python-2.7.9]# echo $?
0
[root@mysql-master Python-2.7.9]# /usr/local/bin/python2.7 -V
Python 2.7.9
[root@mysql-master Python-2.7.9]# mv /usr/bin/python /usr/bin/python2.6
mv:是否覆盖"/usr/bin/python2.6"? yes
[root@mysql-master Python-2.7.9]# ln -s /usr/local/bin/python2.7 /usr/bin/python
[root@mysql-master Python-2.7.9]# python -V
Python 2.7.9
로그인 후 복사

2) yum 구성 조정

因为yum使用会调用python的信息,避免重新安装python后,yum出现报错,编辑yum的文件:
[root@mysql-master Python-2.7.9]# sed -i 's@#!/usr/bin/python@#!/usr/bin/python2.6@g' /usr/bin/yum
[root@mysql-master Python-2.7.9]# cat /usr/bin/yum |head
#!/usr/bin/python2.6
import sys
try:
    import yum
except ImportError:
    print >> sys.stderr, """\
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
   %s
[root@mysql-master Python-2.7.9]# python
Python 2.7.9 (default, Nov 16 2016, 19:53:47) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-16)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print "hello,world"
hello,world
到此,python2.7的基本安装也完成了。
로그인 후 복사


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿