No module named pkg_resources

后端 未结 30 2451
一向
一向 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 08:14

    I have seen this error while trying to install rhodecode to a virtualenv on ubuntu 13.10. For me the solution was to run

    pip install --upgrade setuptools
    pip install --upgrade distribute 
    

    before I run easy_install rhodecode.

提交回复
热议问题