Django 表导入错误
我遇到 django_tables 导入错误。 无法导入 ikapp.views.admin。错误是:没有名为 django_tables 的模块。
i am having an import error django_tables.
Could not import ikapp.views.admin. Error was: No module named django_tables.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来 ikapp.views.admin 需要 django-tables 。不幸的是,无法判断它需要哪个版本/分叉,但很可能是:
It looks like
ikapp.views.admin
requiresdjango-tables
. Unfortunately it's not possible to tell which version/fork it requires, but it's likely to be either:django_tables 要求您实际上在 django-“primed”python 环境中运行。您可以通过转到项目目录并输入
然后您可以毫无问题地导入 django_tables 来访问它。
有关更多信息,请查看以下内容: https://docs。 djangoproject.com/en/dev/ref/django-admin/
django_tables requires that you actually be running within the django-"primed" python environment. You can access this by going to your project's directory and typing
Then you can import django_tables with no problems.
For further info, take a look at the following: https://docs.djangoproject.com/en/dev/ref/django-admin/