| 官网原链接:https://pip.pypa.io/en/stable/installing/Installation 
 Installing with get-pip.pyTo install pip, securely download get-pip.py. :  
   
   curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py  Inspect get-pip.pyfor any malevolence. Then run the following:  到这一步的时候,如果python2的pip坏了,就运行:python2 get-pip.py  如果是python3的pip坏了,升级就运行:python3 get-pip.py  
  Warning Be cautious if you are using a Python install that is managed by your operating system or another package manager. get-pip.pydoes not coordinate with those tools, and may leave your system in an inconsistent state. get-pip.pyalso installs setuptools  and wheel if they are not already. setuptools is required to install source distributions. Both are required in order to build a Wheel Cache (which improves installation speed), although neither are required to install pre-built wheels.
  
  Note The get-pip.py script is supported on the same python version as pip. For the now unsupported Python 2.6, alternate script is available here.  
  get-pip.py options 
    
    --no-setuptools 
    If set, do not attempt to install setuptools  
    
    --no-wheel 
    If set, do not attempt to install wheel get-pip.pyallows pip install options and the general options. Below are some examples:
 Install from local copies of pip and setuptools:  
    
    python get-pip.py --no-index --find-links=/local/copies  Install to the user site : Install behind a proxy:  
    
    python get-pip.py --proxy="http://[user:passwd@]proxy.server:port"   
 Upgrading pipOn Linux or macOS: On Windows :  
   
   python -m pip install -U pip   
 Python and OS Compatibilitypip works with CPython versions 2.7, 3.3, 3.4, 3.5, 3.6 and also pypy. This means pip works on the latest patch version of each of these minor versions. Previous patch versions are supported on a best effort approach. pip works on Unix/Linux, macOS, and Windows. 
  
   
   
   
   
   
   
   
  |