如何使用 Modelviz.py 创建 Django 图

发布于 2024-11-08 13:35:38 字数 558 浏览 0 评论 0原文

我的 Django 应用程序结构如下所示:

MyProject
    |____templates
    |____static
    |____apps
    |   |____first_app
    |   |____second_pass
    |____settgins.py
    |____...

我在 Windows 上。我必须在哪里粘贴 modelviz.py?我还必须运行什么命令才能使其工作?当我将 modelviz.py 粘贴到应用程序中并运行时

d:\projects\MyProject\apps> python modelviz.py first_app > diagram_1.dot
I get an error

ImportError: Settings cannot be imported, because environment variable DJANGO_SE
TTINGS_MODULE is undefined.

My Django application structure looks like this:

MyProject
    |____templates
    |____static
    |____apps
    |   |____first_app
    |   |____second_pass
    |____settgins.py
    |____...

and I'm on Windows. Where do I have to paste modelviz.py? and also what command do I have to run to make it work? When I paste modelviz.py in apps and run

d:\projects\MyProject\apps> python modelviz.py first_app > diagram_1.dot

I get an error

ImportError: Settings cannot be imported, because environment variable DJANGO_SE
TTINGS_MODULE is undefined.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

谁的新欢旧爱 2024-11-15 13:35:38

您需要首先设置 DJANGO_SETTINGS_MODULE 环境变量。在文档中,您会发现可以

set DJANGO_SETTINGS_MODULE=mysite.settings

在 Windows 下执行此操作。 。

You need to set the DJANGO_SETTINGS_MODULE environment variable first. In the documentation you will find that you can do this with

set DJANGO_SETTINGS_MODULE=mysite.settings

under Windows...

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