ImportError: Could not import settings

前端 未结 6 1012
一生所求
一生所求 2020-12-03 01:11

I am trying to develop an sample project in Django and getting errors when I run the syncdb command.

This is how my project structure looks like:

/Users/djan

6条回答
  •  广开言路
    2020-12-03 01:29

    The significant part of the traceback here is right at the very end. It says "No module named unipath". You've referred to that somewhere in your code, but you don't seem to have it in your project - it's not part of the standard library, so you'll need to install it somewhere that Python can see it.

提交回复
热议问题