Can't install via pip because of egg_info error

后端 未结 10 1119
-上瘾入骨i
-上瘾入骨i 2020-11-22 13:58

No matter which package I\'m trying to install, I get this error:

error: invalid command \'egg_info\'

----------------------------------------
Cleaning up.         


        
10条回答
  •  情深已故
    2020-11-22 14:41

    In my case, I had to uninstall pip and reinstall it. So I could install my specific version.

    sudo apt-get purge --auto-remove python-pip
    sudo easy_install pip 
    

提交回复
热议问题