其中django后台manage.py入口程序报错,检索很多问题解决方案,这里记录下个人问题原因
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