CentOS6.9はpythonをコンパイルしてインストールします
**Python公式ウェブサイト:https://www.python.org/ **
1.CentOSのバージョンとシステムのデフォルトのPythonバージョンを確認します。
cat /etc/redhat-release
python -V
2. Python-3.6.1をコンパイルしてインストールします:
1、 依存パッケージをインストールします。
yum -y groupinstall "Development tools"
yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-develreadline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel man
2、 CentOS6の現在のシステム時間を設定します。
date 040413022017.30
date
3、 ホスト名の解決を構成します。#vim / etc / hosts-> 127.0.0.1 localhost
4、 Python-3.6.1をコンパイルしてインストールします。
tar xf Python-3.6.1.tar.xz -C /usr/src
cd /usr/src/Python-3.6.1
. /configure --prefix=/usr/local/python3.6.1 --enable-shared --enable-profiling--enable-optimizations --disable-ipv6 --with-threads --with-pymalloc --with-fpectl--enable-loadable-sqlite-extensions
make && make install //このステップをテストする必要があり、これには長い時間がかかります
4、 CentOS6.9のデフォルトのPythonバージョンを3.6.1に変更します。
mv /usr/bin/python /usr/bin/python2.6.6-old
ln -s /usr/local/python3.6.1/bin/python3 /usr/bin/python
ln -s /usr/local/python3.6.1/bin/pip3 /usr/bin/pip
5、 PATH環境変数に追加します。
vim /etc/profile.d/python3.6.1.sh
exportPATH=/usr/local/python3.6.1/bin:$PATH
. /etc/profile.d/python3.6.1.sh
echo $PATH
6、 構成ヘッダーファイル:
ln -sv /usr/local/python3.6.1/include /usr/include/python3.6.1
7、 構成ライブラリファイル:
echo "/usr/local/python3.6.1/lib" >/etc/ld.so.conf.d/python3.6.1.conf
cat /etc/ld.so.conf.d/python3.6.1.conf
ldconfig
8、 マンヘルプファイルを構成します。
vim /etc/man.configで、次のコードを追加します。
MANPATH /usr/local/python3.6.1/share/man
9、 構成済みのPythonバージョンを表示します。
python -V
python3 -V
3. yumのPythonバージョンをシステムの元の2.6.6バージョンに変更します:
Pythonをアップグレードした後、yumは使用できなくなります。
vim / usr / bin / yum、最初の行の「#!/ usr / bin / python」を「#!/ usr / bin /python2.6.6-old」に変更します