Django.conf module not found, why?

后端 未结 4 1506
清酒与你
清酒与你 2021-01-05 14:34

I\'m trying to install the Evennia Python MUD and when I get to the python manage.py syncdb command I get the below message... any ideas on why?

Traceback (m         


        
4条回答
  •  滥情空心
    2021-01-05 14:48

    Remove the .pyc files using the command

    find . -name "*.pyc" -exec rm -f {} \;
    

    and test again.

提交回复
热议问题