如何使Python脚本在Windows上可执行?
,甚至从命令行使用 Mac OS 时,我利用 shebang 直接运行一些脚本,如下所示:./myScript.py
。我确实需要授予该脚本可执行权限,但仅此而已。
现在,我刚刚在 Windows 7 上安装了 Python 3.1.2,并且我希望能够从命令行执行相同的操作。我还需要遵循哪些额外步骤?
Possible Duplicate:
Set up Python on Windows to not type python in cmd
When I use python on Linux, or even Mac OS from command line, I take advantage of the shebang and run some of my scripts directly, like so: ./myScript.py
. I do need to give this script executable permissions, but that is all.
Now, I just installed Python 3.1.2 on Windows 7, and I want to be able to do the same from command line. What additional steps do I need to follow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这比我能说的更好地总结了它:
http://docs.python.org/faq/ windows.html
更具体地说,请查看标题为“如何使 Python 脚本可执行?”的第二部分。
This sums it up better than I can say it:
http://docs.python.org/faq/windows.html
More specifically, check out the 2nd section titled "How do I make Python scripts executable?"