我想在服务器上更新我的Python版本,我当前的Python版本是2.6,我想将其升级到2.7。Plesk已安装在我们的服务器中,我也可以访问ssh。
如何在Centos 6.5中进行升级?
我在下面尝试
下载Python并将其解压缩
wget http://www.python.org/ftp/python/2.7.8/Python-2.7.8.tar.xz
xz -d Python-2.7.8.tar.xz
tar -xvf Python-2.7.8.tar
安装过程
# Enter the directory:
cd Python-2.7.8
# Run the configure:
./configure --prefix=/usr/local
# compile and install it:
make
make altinstall
# Checking Python version:
[root@nicetry ~]# python2.7 -V
Python 2.7.8
export PATH="/usr/local/bin:$PATH"
但是当我键入python --version
它返回2.6.6