Ich möchte meine Python-Version auf dem Server aktualisieren, meine aktuelle Python-Version ist 2.6 und ich möchte sie auf 2.7 aktualisieren. Plesk ist auf unserem Server installiert und ich habe auch Zugriff auf ssh.
Wie kann ich es in Centos 6.5 aktualisieren?
Ich versuche es unten
Laden Sie Python herunter und extrahieren Sie es
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
Installationsprozess
# 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"
aber wenn ich tippe python --version
, kehrt es zurück2.6.6