如何从 eclipse(Pydev) 中运行命令
是否可以从 eclipse(Pydev) 中运行 python 命令?
我想创建一个将创建数据库的过程。目前,我通过在命令提示符中编写命令来创建数据库,但我希望在 Eclipse 中的代码中创建相同的数据库。
像这样的东西:
def createDatabase()
createdb -U myUser -T template0
Is it possible to run python command from within eclipse(Pydev)?
I want to create a procedure which will create database. Currently I create database by writing the command in command prompt, But I want the same from my code within eclipse.
Something like:
def createDatabase()
createdb -U myUser -T template0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 popen2 模块。它允许您生成进程。然后你可以从 PyDev 控制台调用你的函数
Try popen2 module. It allows you to spawn processes. Then you can call your function from PyDev console
您还可以从“运行”>“外部工具”>“外部工具配置”执行程序。设置完成后,您可以从工具栏重新运行它。
You can also execute a program from Run>External Tools>External Tools Configurations. Once you set it up, you can re-run it from the toolbar.