Python Pip Installing for Wrong Version

前端 未结 1 1002
时光说笑
时光说笑 2021-01-25 07:09

I know this question has been asked before, but my issue is a bit different. I have both pip2.7 installed and working and pip3.4 installed and working (with my Python 2.7 and 3.

相关标签:
1条回答
  • 2021-01-25 07:34

    I'd suggest to uninstall and reinstall pip. Do so by running

    pip uninstall pip
    

    Download the get-pip.py bootstrapper from https://bootstrap.pypa.io/get-pip.py and run

    python2.7 get-pip.py
    

    or

    python3.4 get-pip.py
    

    respectively.

    0 讨论(0)
提交回复
热议问题