Pip does not work after upgrade to ubuntu-16.10

前端 未结 3 611
自闭症患者
自闭症患者 2020-11-29 13:36

Running a command alongwith pip gives the following error. Even the command pip -V produces the following error.
I read that the error is due to setuptoo

3条回答
  •  难免孤独
    2020-11-29 14:36

    The only solution I could find is reinstalling pip. Run these commands on your terminal

    • wget https://bootstrap.pypa.io/get-pip.py
    • sudo -H python get-pip.py --prefix=/usr/local/

    However, this works only for pip, not pip3!

提交回复
热议问题