サーバーの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