[ root@localhost ~]# python --version
Python 2.6.6
[ root@localhost ~]# cat /etc/redhat-release
CentOS release 6.10(Final)
[ root@localhost ~]# yum groupinstall -y "Development tools"[root@localhost ~]# yum install -y zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel
[ root@localhost ~]# wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgz
[ root@localhost ~]# tar zxf Python-2.7.13.tgz
[ root@localhost ~]# cd Python-2.7.13[root@localhost Python-2.7.13]# ./configure
[ root@localhost Python-2.7.13]# make && make install
## デフォルトのPython2.7.13がインストールされます/usr/local/binディレクトリ
[ root@localhost Python-2.7.13]# ll -tr /usr/local/bin/python*-rwxr-xr-x1rootルート626156810 1217年12月:17/usr/local/bin/python2.7-rwxr-xr-x1root root 168710 1217年12月:17/usr/local/bin/python2.7-config
lrwxrwxrwx 1root root 710 1217年12月:17/usr/local/bin/python -> python2
lrwxrwxrwx1ルートルート910 1217年12月:17/usr/local/bin/python2 -> python2.7
lrwxrwxrwx 1root root 1217年10月16日:17/usr/local/bin/python2-config -> python2.7-config
lrwxrwxrwx 1root root 1217年10月14日:17/usr/local/bin/python-config -> python2-config
## そして、システムに付属しているPythonは/usr/binディレクトリ
[ root@localhost Python-2.7.13]# ll -tr /usr/bin/python*-rwxr-xr-x.2ルートルート48648182016/usr/bin/python2.6-rwxr-xr-x.2ルートルート48648182016/usr/bin/python
lrwxrwxrwx.1ルートルート61月252019/usr/bin/python2 -> python
## デフォルトで古いバージョンのPythonの名前を変更します
[ root@localhost Python-2.7.13]# mv /usr/bin/python /usr/bin/python.old
## 次に、システムのデフォルトのpythonを削除します-構成ソフトリンク
[ root@localhost Python-2.7.13]# rm -f /usr/bin/python-config
## 最後に、Pythonソフトリンクの新しいバージョンを作成します
[ root@localhost Python-2.7.13]# ln -s /usr/local/bin/python /usr/bin/python
## 上記の手順が完了すると、ディレクトリ/usr/binの下のPythonは
[ root@localhost Python-2.7.13]# ll -tr /usr/bin/python*-rwxr-xr-x.2ルートルート48648182016/usr/bin/python.old
- rwxr-xr-x.2ルートルート48648182016/usr/bin/python2.6
lrwxrwxrwx.1ルートルート61月252019/usr/bin/python2 -> python
lrwxrwxrwx 1root root 1217年10月21日:20/usr/bin/python ->/usr/local/bin/python
[ root@localhost Python-2.7.13]# python --version
Python 2.7.13
## Python2に戻る.7.13は正常です
[ root@localhost Python-2.7.13]# wget https://bootstrap.pypa.io/ez_setup.py -O -| python
## setuptoolsが正しくインストールされたら、簡単_installコマンドはにインストールされます/usr/local/binディレクトリの下
[ root@localhost Python-2.7.13]# easy_install pip
## 正しいインストールが完了すると、pipコマンドがにインストールされます。/usr/local/binディレクトリの下
[ root@localhost Python-2.7.13]# vim /usr/bin/yum1#!/usr/bin/python2.6
## 構成ファイルのヘッダーを変更する#!/usr/bin/python to--->#!/usr/bin/python2.6
[ root@localhost Python-2.7.13]# pip install distribute
DEPRECATION: Python 2.7 will reach the end of its life on January 1st,2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
Collecting distribute
Downloading https://files.pythonhosted.org/packages/5f/ad/1fde06877a8d7d5c9b60eff7de2d452f639916ae1d48f0b8f97bf97e570a/distribute-0.7.3.zip(145kB)|████████████████████████████████| 153kB 252kB/s
Requirement already satisfied: setuptools>=0.7in/usr/local/lib/python2.7/site-packages/setuptools-33.1.1-py2.7.egg(from distribute)(33.1.1)
Installing collected packages: distribute
Running setup.py install fordistribute ... done
Successfully installed distribute-0.7.3
**運用と保守の学習、共有、コミュニケーションに関して、著者はWeChatパブリックアカウント[O&M Cat]を開設しました。興味のある友人はそれをフォローし、参加を歓迎し、運用と保守の知識を一緒に学ぶための独自の小さなサークルを設立できます。 ****
技術的な交流が必要な友達は、私をWeChatに追加して、あなたと一緒に成長することを楽しみにしています。私のWeChat:
Recommended Posts