【Django】Couldn't import Django

张逸清
2023-12-01

配置Django遇到Couldn't import Django

检查python下是否有Django模块

>>python

>>help('modules')

及检查版本

Django versionPython versions
1.82.7, 3.2 (until the end of 2016), 3.3, 3.4, 3.5
1.9, 1.102.7, 3.4, 3.5
1.112.7, 3.4, 3.5, 3.6
2.03.4, 3.5, 3.6
2.13.5, 3.6, 3.7

下载对应版本

>>pip install django==1.11 -i https://pypi.tuna.tsinghua.edu.cn/simple

 类似资料: