Centos7 安裝 python 2.7.15 和 pip
1、先安裝 GCC 包,如果沒安裝 GCC包 就輸入以下指令行安裝;
(*注:以下記得使用 su 權限)
yum install gcc openssl-devel bzip2-devel
2、用 wget 下載下傳 python 2.7 并解壓
如果沒有 wget,先用下面指令安裝 wget;
yum -y install wget
進入目錄 /usr/src 再用 wget 下載下傳 python 2.7
cd /usr/src
wget https://www.python.org/ftp/python/2.7.15/Python-2.7.15.tgz
再解壓 python2.7
tar -zxvf Python-2.7.15.tgz
3. 安裝 python 2.7
進入上面解壓的 Python-2.7.15 解壓檔案中使用下面指令行安裝
cd Python-2.7.15
make altinstall
4. 檢視安裝版本
python -V
可以看到輸出 Python 2.7.15 就安裝完成。
5、安裝 PIP