如何使用 PyDev 重定向 Django 命令?

发布于 2024-11-02 21:59:11 字数 419 浏览 2 评论 0原文

我想运行以下 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 技术交流群。

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

发布评论

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

评论(1

黑寡妇 2024-11-09 21:59:11
  1. 打开 Eclipse 并转到菜单 Run >运行配置
  2. 单击 Pydev Django,然后单击“新建”图标以创建新的启动配置
  3. Tab main:选择项目和主模块 (manage.py)
  4. Tabterpreter:选择将运行管理的解释器。 py
  5. 选项卡参数:在程序参数选项卡中写入dumpdata my_app
  6. 通用:选中“标准输入和输出”中的文件并设置输出位置和文件名。取消选中“分配控制台”。

最后单击“应用并运行”。有点棘手,但可以正常工作。

  1. Open Eclipse and go to menu Run > Run configurations
  2. Click on Pydev Django and then the "New" icon to create a new launch configuration
  3. Tab main: select the project and main module (manage.py)
  4. Tab interpreter: select which interpreter will run manage.py
  5. Tab arguments: write dumpdata my_app in Program arguments
  6. Tab common: check File in "Standard input and Output" and set your output location and filename. Uncheck "Allocate console".

Finally click on Apply and Run. A bit tricky but works as it should.

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