Can't install via pip because of egg_info error

后端 未结 10 1118
-上瘾入骨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:34

    virtualenv is a tool to create isolated Python environments.

    you will need to add the following to fix command python setup.py egg_info failed with error code 1, so inside your requirements.txt add this:

    virtualenv==12.0.7

提交回复
热议问题