如何使用 PyDev 重定向 Django 命令?
我想运行以下 Django 命令(将数据库的内容转储到文本文件中):
python manage.py dumpdata my_app > data.json
我正在 中使用 Django 框架PyDev 作为 Eclipse 插件。因此,为了在 PyDev 中运行上述命令,我转到“自定义命令”并插入 dumpdata my_app >数据.json
。但是,由于 >
字符,这样做会导致错误:
错误:未知应用程序:>
如何在 PyDev 中使用 >
(重定向)?
I would like to run the following Django command (to dump the contents of my database into a text file):
python manage.py dumpdata my_app > data.json
I'm using the Django framework within PyDev as an Eclipse plugin. Therefore, in order to run the above command in PyDev I go to "Custom command" and insert dumpdata my_app > data.json
. However, doing so results in an error because of the >
character:
Error: Unknown application: >
How can I use >
(redirection) in PyDev?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
manage.py
)dumpdata my_app
最后单击“应用并运行”。有点棘手,但可以正常工作。
manage.py
)dumpdata my_app
in Program argumentsFinally click on Apply and Run. A bit tricky but works as it should.