如何正确安装django-import-export

时间:2019-07-17 03:11:31

标签: django import export

我正在尝试将excel工作表导入到django数据库中,并且设法安装了django-import-export。遵循此https://simpleisbetterthancomplex.com/packages/2016/08/11/django-import-export.html之后,我编辑了settings.py以包含“ import-export”,但我不断收到一个错误,提示没有名为“ import-export”的模块。

在此https://simpleisbetterthancomplex.com/packages/2016/08/11/django-import-export.html之后,我编辑了settings.py以包含“ import-export”,但是在尝试运行服务器时,我不断收到一个错误,提示没有名为“ import-export”的模块。 / p>

ModuleNotFoundError:没有名为“ import-export”的模块

我也不太确定此后的后续步骤。

1 个答案:

答案 0 :(得分:1)

我认为您的INSTALLED_APPS中有错字

编辑您的INSTALLED_APPS。使用import_export代替import-export

# settings.py
INSTALLED_APPS = (
    ...
    'import_export',
)

请参阅docs