Da Python 2.6 im Standard von CentOS 6.5 und Python 2.7 in CentOS 7.2 enthalten ist, gibt es verschiedene Unannehmlichkeiten. Installieren Sie daher eine neue Version und eine häufig verwendete Version.
Das Installationsziel ist "/ opt / local".
** Nachtrag **
Nachtrag 2020/01/10: Verwenden wir schlampiges Python3.
# yum groupinstall "Development tools"
# yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel
Python 2.7, 3.6 install
Laden Sie sie zuerst herunter und installieren Sie sie.
curl -O https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz
curl -O https://www.python.org/ftp/python/2.7.6/Python-2.7.6.tgz
tar zxf Python-3.6.6.tgz
tar zxf Python-2.7.6.tgz
Python2.7 installieren
cd Python-2.7.6
./configure --prefix=/opt/local
make && make altinstall
Python3.6 installieren
cd Python-3.6.6
./configure --prefix=/opt/local
make && make altinstall
(19.07.2015: Ändere das Link-Ziel von Distribute. Danke @ mtomoaki_96kg: +1 :)
curl -O https://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz
tar xzf distribute-0.6.49.tar.gz
cd distribute-0.6.49
/opt/local/bin/python2.7 ./distribute_setup.py
/opt/local/bin/python3.3 ./distribute_setup.py
19.07.2015 Nachtrag: PIP kann ohne Installation von Distribute / Setuptools installiert werden, sodass Sie diesen Schritt problemlos überspringen können. Sie können es vielmehr installieren, indem Sie den Befehl pip install Distribute
mit pip ausführen.
see: https://pypi.python.org/pypi/distribute/0.6.49
(Hinzugefügt am 27.09.2014) (22.04.2015 geändert von raw.github.com zu raw.githubusercontent.com) (19.07.2015 Von Github auf Pypa-Link geändert, siehe: https://pip.pypa.io/en/latest/installing/#install-pip)
> curl -kL https://bootstrap.pypa.io/get-pip.py | /opt/local/bin/python2.7
> curl -kL https://bootstrap.pypa.io/get-pip.py | /opt/local/bin/python3.6
/opt/local/bin/pip2.7 install virtualenv
/opt/local/bin/pip3.6 install virtualenv
danke sahiruha: +1:
--http: //www.petitec.com/2013/04/ Setzen Sie python2-7 in centos6 /
2018/10/04: Die von PIP empfohlene Versionsnummer von Python war> = 2.7.9,> = 3.4, daher wurde der als 3.3 beschriebene Teil in 3.6 geändert.