서버에서 Python 버전을 업데이트하고 싶습니다. 현재 Python 버전은 2.6이며 2.7로 업그레이드하고 싶습니다. Plesk는 우리 서버에 설치되어 있으며 ssh에도 액세스 할 수 있습니다.
Centos 6.5에서 어떻게 업그레이드 할 수 있습니까?
나는 아래 시도
파이썬을 다운로드하고 추출
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