Je veux mettre à jour ma version Python sur le serveur, ma version Python actuelle est 2.6 et je veux la mettre à niveau 2.7. Plesk est installé sur notre serveur et j'ai également accès à ssh.
Comment puis-je le mettre à niveau dans Centos 6.5?
J'essaye ci-dessous
Téléchargez Python et extrayez-le
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
Processus d'installation
# 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"
mais quand je tape python --version
ça retourne2.6.6