pydev 中的启动应用程序
大家好,我想为主页编写一个 Django 视图,我知道首先我需要在我的项目中创建一个 Django 应用程序。我知道我应该写以下内容: $ python manage.py startapp name ,在 coomand 行中,但我的问题是我不知道如何在 pydev(eclipse) 中执行此操作。有人知道吗?
$ python manage.py startapp name
filename contains-> __init__
->forms
->models
->tests
->views
Hi everyone i want to To write a Django view for the main page, and i know that first i need to create a Django application inside my project. I know that i should write the following: $ python manage.py startapp name , in a coomand line but my problem is that i don't know how can i do this into the pydev(eclipse). Does anybody knows?
$ python manage.py startapp name
filename contains-> __init__
->forms
->models
->tests
->views
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
右键单击项目根目录->姜戈 ->创建应用程序(manage.py startapp)。
Right click on project root -> Django -> Create application (manage.py startapp).
在 PyDev 中创建 Django 项目后,您应该能够右键单击该项目并选择 Django 相关操作的 Django 条目...其中之一是创建应用程序 (manage.py startapp),可用于创建 Django 应用程序。
检查:http://pydev.org/manual_adv_django.html 如果您需要有关设置现有项目作为 Django 项目或创建实际项目。
After creating a Django project inside PyDev, you should be able to right-click the project and select the
Django
entry for Django related actions... one of those isCreate application (manage.py startapp)
, which may be used to create the Django application.Check: http://pydev.org/manual_adv_django.html if you need more info on setting an existing project as a Django project or creating the actual project.