在本地运行Web应用程序时使用ModuleNotFound

时间:2019-11-06 09:59:39

标签: python django project

我正在按照说明中的说明尝试在GitHub上本地运行该项目,但是即使我已经克隆了整个项目并按照上述正确方法按照说明进行操作,也遇到了ModuleNotFound错误。

我不明白这一点。请找到存储库here

This is the error message I'm getting while trying to run the server locally.

1 个答案:

答案 0 :(得分:3)

当您尝试导入未安装的库时,这是常见错误。 要解决此问题,您必须通过以下方式安装库:

pip install bootstrapform

或使用以下方法安装项目附带的所有要求:

pip install -r requirements.txt

然后将其附加到django设置中的软件包列表中,在您的项目中为4th_umpire/web/cfd/settings.py

INSTALLED_APPS = [
'bootstrapform',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'fourth_umpire',
'bootstrapform',

]