更新pip

在使用 pip更新python 包的时候总遇到问题,经查,是需要先更新 pip。
但是在 更新 pip,
试过
pip install --upgrade pip
试过
sudo easy_install pip
但是总出现 SSL 的问题,具体报错如下:
Download error on https://pypi.python.org/simple/pip/: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:590) -- Some packages may not be found! Couldn't find index page for 'pip' (maybe misspelled?) Scanning index of all packages (this may take a while)
试过
sudo curl https://bootstrap.pypa.io/get-pip.py | python
也遇到了写文件的权限问题。

最后,使用以下方法,终于将pip更新到了18.0最新版本

  1. 卸载 pip
    sudo pip uninstall pip
  2. 安装 pip
    curl 'https://bootstrap.pypa.io/get-pip.py' > get-pip.py
    sudo python get-pip.py
    sudo easy_install pip
  3. pip --verison
    检查pip 安装成功

你可能感兴趣的:(更新pip)