使用 IDLE 使用完整文件路径启动脚本

发布于 2024-11-18 18:08:48 字数 342 浏览 4 评论 0原文

我目前正在使用 Notepad++ 编辑我的 python 脚本,并且我希望能够使用快捷方式使我的脚本在 IDLE 中运行。目前,我有:

cd C:\Python32
pythonw.exe Lib\idlelib\idle.pyw -c "$(FULL_CURRENT_PATH)"

当我尝试运行它时,我在 C:\Users\... 中的 : 上收到语法错误

但是,如果我省略 -c,IDLE 在其编辑器中正确打开文件,然后我就可以运行它。

我觉得我错过了一些简单的事情,有人可以帮助我吗?

I'm currently using Notepad++ to edit my python script, and I would like to be able to use a shortcut to make my script run in IDLE. Currently, I have:

cd C:\Python32
pythonw.exe Lib\idlelib\idle.pyw -c "$(FULL_CURRENT_PATH)"

When I try to run it, I get a Syntax error on the : in C:\Users\...

However, if I omit -c, IDLE properly opens up the file in it's editor and then I am able to run it.

I feel like I'm missing something simple, can anyone help me out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

半衾梦 2024-11-25 18:08:48

参数-c用于启动命令,如果需要运行文件,则使用参数-r

我使用这个命令:C:\Python27\Lib \idlelib\idle.bat -r "$(FULL_CURRENT_PATH)"

Argument -c used to start the command, if you need to run a file, then use argument -r

I use this command: C:\Python27\Lib\idlelib\idle.bat -r "$(FULL_CURRENT_PATH)"

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