- 出现这个错误考虑与python版本不兼容的问题。
- colections 模块中的 mapping 子模块只在 Python 3.3以上版本 中才有,而我的Python版本是3.11,如果django的版本低于3.3,则会出现导入错误。
- 那么如何在不卸载原有django的基础上进行更新版本呢?直接在终端输入命令:pip install django==4.0 #django==版本号
在出现这个错误之前,我还出现了别的错误:
① Watching for file changes with StatReloader Exception in thread django-main-thread:
参考了网上的很多方法,给django降级到2.0,行不通又降级到2.0一下都行不通
② 更换完版本后,又出现了以下的错误:
Exception ignored in thread started by: <function check_errors.<locals>.wrapper at 0x0000025C9F07C860>
Traceback (most recent call last):
· 最后出现标题所指的错误得以解决