DistributionNotFound error after upgrading pip

后端 未结 8 1902
借酒劲吻你
借酒劲吻你 2020-12-31 12:59

In reading about virtualenv here I realized I didn\'t have pip 1.3+, so I ran pip install --upgrade pip and now when I run pip --version i get the

8条回答
  •  抹茶落季
    2020-12-31 13:27

    There is no need to uninstall python and install it back. Get the latest distribute package installed and then update pip with it should do the trick.

    wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
    sudo python ez_setup.py
    sudo easy_install -U pip
    

提交回复
热议问题