如何使用 Modelviz.py 创建 Django 图
我的 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 errorImportError: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要首先设置 DJANGO_SETTINGS_MODULE 环境变量。在文档中,您会发现可以
在 Windows 下执行此操作。 。
You need to set the DJANGO_SETTINGS_MODULE environment variable first. In the documentation you will find that you can do this with
under Windows...