其中django后台manage.py入口程序报错,检索很多问题解决方案,这里记录下个人问题原因文章来源地址https://www.toymoban.com/news/detail-855514.html
1.django启动异常问题详情
- django.core.exceptions.AppRegistryNotReady: Apps aren’t loaded yet.
2.问题原因
-
Python第三方包安装版本不一致或缺少依赖包
,如项目中需要Django==2.0
,而代码中是4.x导致程序启动报错。 - 按照项目依赖包对应的版本即解决问题。
- 程序成功启动
3.其他命令
- 将整个python环境下的库导出到requirements.txt。
pip freeze > requirements.txt
- 导出当前项目所需依赖库。
# pip install pipreqs pipreqs . --encoding=utf8 --force
- 离线按requirements.txt下载项目所需库。
pip download pandas -d "D:\软件安装包\python库" -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
文章来源:https://www.toymoban.com/news/detail-855514.html
到了这里,关于【Django】django.core.exceptions.AppRegistryNotReady: Apps aren‘t loaded yet.的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!