Installieren Sie Folgendes unter CentOS 6.6.
# :Als root ausführen.
$ :Normale Benutzer(Anders als root)Laufen Sie mit.
Python3.4 Dieses Mal aus dem Quellcode erstellen und installieren.
Zunächst werden verwandte Module installiert.
# yum groupinstall "Development tools"
# yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel
Laden Sie die Quelle herunter und konfigurieren Sie → make → make alt install.
# cd /usr/local/src
# wget https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz
# tar -zxvf Python-3.4.3.tgz
# cd Python-3.4.3
# ./configure --prefix=/usr/local/python
# make && make altinstall
Machen Sie die Python-Bibliothek für das gesamte System sichtbar.
# echo "/usr/local/python/lib" >> /etc/ld.so.conf
# ldconfig
Fügen Sie den Link des installierten Python3.4 unter / usr / local / bin / ein, der sich in Ihrem PATH befindet.
# ln -s /usr/local/python/bin/python3.4 /usr/local/bin/python
Stellen Sie den PATH-Wert so ein, dass / usr / local / bin an erster Stelle steht.
Sie sollten in der Lage sein, python3.4 mit python aufzurufen.
# /usr/local/python/bin/python3.4 -V
# python -V
Wenn die obigen Ergebnisse identisch sind, ist die Installation erfolgreich.
Easy_Install Easy_Install setzt den Pip, also installieren Sie ihn.
# cd /usr/local/src
# wget https://pypi.python.org/…/s/setuptools/setuptools-18.0.1.zip
# unzip setuptools-18.0.1.zip
# cd setuptools-18.0.1
# /usr/local/bin/python setup.py install
# ln -s /usr/local/python/bin/easy_install /usr/local/bin/easy_install
Pip
# /usr/local/bin/easy_install pip
# ln -s /usr/local/python/bin/pip /usr/local/bin/pip
Virtualenv Eine Bibliothek zum Erstellen einer virtuellen Umgebung für Python.
# pip install virtualenv
# ln -s /usr/local/python/bin/virtualenv /usr/local/bin/virtualenv
Virtualenvwrapper Dies ist eine Erweiterung, die gemeinsam die virtuelle Umgebung von virtualenv verwaltet.
# pip install virtualenvwrapper
Einstellungen sind für jeden Benutzer erforderlich.
$ vim ~/.bashrc
if [ -f /usr/local/python/bin/virtualenvwrapper.sh ]; then
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/python/bin/virtualenvwrapper.sh
fi
Installieren Sie python3.3 unter CentOS Einführung von Virtualenvwrapper
Recommended Posts