因爲centos7本來就安裝了Python2,並且這個Python2不能被刪除,由於有不少系統命令,好比yum都要用到。html
[root@VM_105_217_centos Python-3.6.2]# python Python 2.7.5 (default, Aug 4 2017, 00:39:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux2 Type "help", "copyright", "credits" or "license" for more information.
輸入Python命令,查看能夠得知是Python2.7.5版本python
輸入linux
which python
能夠查看位置,通常是位於/usr/bin/python目錄下。sql
yum -y groupinstall "Development tools" yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel
而後根據本身需求下載不一樣版本的Python3,我下載的是Python3.6.2centos
wget https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tar.xz
若是速度不夠快,能夠直接去官網下載,利用WinSCP等軟件傳到服務器上指定位置,個人存放目錄是/usr/local/application/python(記住這個目錄,下面會用到)服務器
mkdir /usr/local/application/python
創建一個空文件夾,而後解壓壓縮包,進入該目錄,安裝Python3app
tar -xvJf Python-3.6.2.tar.xz cd Python-3.6.2
說明:/usr/local/application/python 是python安裝的目錄,默認安裝目錄爲/usr/local/。python2.7
若是出現如下錯誤提示:configure: error: no acceptable C compiler found in $PATH 測試
則表示系統沒有安裝gcc
安裝gcc從新執行./configure –prefix=/usr/local/python3便可url
[root@centos Python-3.6.1]# yum install gcc [root@centos Python-3.6.1]# ./configure --prefix=/usr/local/application/python [root@centos Python-3.6.1]# make && make install
安裝成功後在/usr/local/application/python目錄下生成幾個目錄
/usr/local/application/python/bin目錄下執行python3.6,出現以下輸出證實Python已經安裝成功能夠用了
[root@centos python3]# python3.6 Python 3.6.1 (default, Jun 3 2017, 07:13:03) [GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux Type "help", "copyright", "credits" or "license" for more information. >>>
第一步已經確認當前使用Python爲2.7.5而且在/usr/bin目錄下,接下來須要作的就是替換/usr/bin/python,並更改yum使用的解釋器,否則yum將沒法使用
先使用命令 mv python python_bak 重命名當前Python,結果以下
軟鏈接bin以前的目錄即爲./configure時安裝目錄即/usr/local/application/python, bin以後的python3不須要修改
ln -s /usr/local/application/python/bin/python3 /usr/bin/python ln -s /usr/local/application/python/bin/pip3 /usr/bin/pip3
讓系統默認使用Python 3.6.1
在etc/profile最後一行中加入變量
export PATH="$PATH:/usr/local/python3/bin"
在命令行中輸入python3測試
一、 升級Python後運行yum會報錯
vi /user/bin/yum 編輯yum的執行文件,更改首行的/usr/bin/python 爲上面重命名的名字或/usr/bin/目錄下指向Python2.7的名字,以後再運行yum就正常了
二、 運行yum安裝其餘軟件可能出現如下錯誤,這也是由於Python版本問題,
vi /usr/libexec/urlgrabber-ext-down 修改第一行的Python爲重命名的名字(指向python2.7的)
File "/usr/libexec/urlgrabber-ext-down", line 28 except OSError, e: ^
三、防火牆沒法啓動
出現以上狀況根據提示修改/usr/bin/firewall-cmd文件,順便將同目錄下的firewall-offline-cmd文件進行修改,修改後執行啓動防火牆命令,會發現依然沒法使用
[root@centos ~]# systemctl start firewalld.service Job for firewalld.service failed because the control process exited with error code. See "systemctl status firewalld.service" and "journalctl -xe" for details.``` 根據提示執行systemctl status firewalld.service命令查看狀態,根據顯示中紅色部分能夠看到, 在執行/usr/sbin/firewalld文件時出現問題,由於查看改文件 能夠看到這個文件也是用Python編譯的,因此也要修改 `vi /usr/sbin/firewalld`
修改完成後再次執行啓動命令就能夠正常啓動了,神清氣爽啊,哈哈哈
[root@centos ~]# systemctl start firewalld.service
[root@centos ~]# systemctl status firewalld.service
â—� firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)
Active: active (running) since Wed 2017-06-07 05:38:13 CST; 6s ago
Docs: man:firewalld(1)
Main PID: 2481 (firewalld)
CGroup: /system.slice/firewalld.service
â」」â」€2481 /usr/bin/python2.7 -Es /usr/sbin/firewalld --nofork --nopid
Jun 07 05:38:13 centos systemd[1]: Starting firewalld - dynamic firewall daemon...
Jun 07 05:38:13 centos systemd[1]: Started firewalld - dynamic firewall daemon.
除此以外還有一些其餘文件使用的Python,可使用grep命令查看哪些文件使用了Python解釋器,根據具體狀況修改。 例如查看/usr/bin目錄下的文件
[root@centos ~]# grep -ai /usr/bin/python /usr/bin/*
/usr/bin/easy_install:#!/usr/bin/python
/usr/bin/easy_install-2.7:#!/usr/bin/python
/usr/bin/firewall-cmd:#!/usr/bin/python2.7 -Es
/usr/bin/firewall-offline-cmd:#!/usr/bin/python2.7 -Es
/usr/bin/msghack:#!/usr/bin/python2.7
/usr/bin/pip:#!/usr/bin/python
/usr/bin/pip2:#!/usr/bin/python
/usr/bin/pip2.7:#!/usr/bin/python
/usr/bin/pydoc:#!/usr/bin/python2.7
/usr/bin/systemd-sysv-convert:#!/usr/bin/python2.7
/usr/bin/urlgrabber:#!/usr/bin/python2.7 -t
/usr/bin/wheel:#!/usr/bin/python2.7
/usr/bin/yum:#!/usr/bin/python2```
出現如下問題:
FAIL: test_with_pip (test.test_venv.EnsurePipTest)
zipimport.ZipImportError: can't decompress data; zlib not available
解決辦法:出現這種錯誤通常由於Python的安裝環境沒有安裝好,安裝如下軟件
yum install openssl-devel
若是仍是有報錯則安裝Development tools
yum groupinstall Development tools
安裝成功後make clean如下,再次重複 上面操做