Django runserver error, new installation, first time user of Django

前端 未结 2 1178
南笙
南笙 2021-01-26 13:35

So I\'ve decided to learn Django, which will be challenging if I cannot get it working.

Running Python 3.7.1 (default, Dec 14 2018, 19:28:38) [GCC 7.3.0] :: Anaconda,

相关标签:
2条回答
  • 2021-01-26 13:45

    You're on Linux so install 'sqlparse' by typing: pip3 install sqlparse. Also you should call python with python3, so that it's not confused with python2.

    0 讨论(0)
  • 2021-01-26 13:52

    Apparently a python package is missing. You can install it like this:

    pip install sqlparse

    0 讨论(0)
提交回复
热议问题