No module named pkg_resources

后端 未结 30 3084
一向
一向 2020-11-22 07:22

I\'m deploying a Django app to a dev server and am hitting this error when I run pip install -r requirements.txt:

Traceback (most recent call la         


        
30条回答
  •  庸人自扰
    2020-11-22 07:55

    If you are encountering this issue with an application installed via conda, the solution (as stated in this bug report) is simply to install setup-tools with:

    conda install setuptools
    

提交回复
热议问题