jarod8016b 发表于 2018-8-14 09:03:25

Centos源码安装Python3-13054681

CentOS 安装easy_install的方法:  
wget -q http://peak.telecommunity.com/dist/ez_setup.py
  
python ez_setup.py8、CentOS安装python包管理安装工具pip的方法如下:
  
wget --no-check-certificate https://github.com/pypa/pip/archive/1.5.5.tar.gz
  
注意:wget获取https的时候要加上:--no-check-certificate
  

  
tar zvxf 1.5.5    #解压文件cd pip-1.5.5/
  
python3 setup.py install
  
OK,这样就安装好pip了,
  

  
下面来安装 requests吧。
  

  
pip3 install requests
页: [1]
查看完整版本: Centos源码安装Python3-13054681