Django runserver hangs at “System check identified no issues (0 silenced).”

后端 未结 7 2030
野的像风
野的像风 2021-02-18 22:52

On one Ubuntu box, the project runs just fine with python manage.py runserver. When trying to replicate it on another Ubuntu box, after installation, it hangs at

相关标签:
7条回答
  • 2021-02-18 23:41

    It might worth to read about the System Check framework.

    Serious errors will prevent Django commands (such as runserver) from running at all. Minor problems are reported to the console. If you have inspected the cause of a warning and are happy to ignore it, you can hide specific warnings using the SILENCED_SYSTEM_CHECKS setting in your project settings file.
    

    If you don't see any issue being displayed is probably because there were no issues running the system check, if something else is not working the error may not be related, then we need more information.

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