使用 IDLE 使用完整文件路径启动脚本
我目前正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参数
-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)"