python入门系列之一:Centos6下python2.7的安装
# python -VPython 2.6.6
查看python的版本信息(之前的yum是通过yum安装的)
# wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tar.xz
# file Python-2.7.9.tar.xz
Python-2.7.9.tar.xz: xz compressed data
# xz -d Python-2.7.9.tar.xz
# ls
debugkernelsPython-2.7.9.tar
# tar -xf Python-2.7.9.tar
# cd Python-2.7.9
# ./configure
# make && make install
# echo $?
0
# /usr/local/bin/python2.7 -V
Python 2.7.9
# mv /usr/bin/python /usr/bin/python2.6
mv:是否覆盖"/usr/bin/python2.6"? yes
# ln -s /usr/local/bin/python2.7 /usr/bin/python
# python -V
Python 2.7.9
页:
[1]