Django 表导入错误

发布于 2024-10-17 20:39:58 字数 81 浏览 0 评论 0原文

我遇到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风吹短裙飘 2024-10-24 20:39:58

看起来 ikapp.views.admin 需要 django-tables 。不幸的是,无法判断它需要哪个版本/分叉,但很可能是:

It looks like ikapp.views.admin requires django-tables. Unfortunately it's not possible to tell which version/fork it requires, but it's likely to be either:

ヤ经典坏疍 2024-10-24 20:39:58

django_tables 要求您实际上在 django-“primed”python 环境中运行。您可以通过转到项目目录并输入

python manage.py shell

然后您可以毫无问题地导入 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

python manage.py shell

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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文