Je veux mettre à jour ma version de Python sur le serveur, ma version actuelle de Python est 2.6 et je veux la mettre à jour vers 2.7. Plesk est installé sur notre serveur et j'ai également accès à ssh.
Comment puis-je le mettre à jour dans Centos 6.5 ?
J'essaie 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
il retourne 2.6.6