gpt4 book ai didi

python - 如何直接从 cmd 运行 .py 脚本?

转载 作者:可可西里 更新时间:2023-11-01 09:59:02 24 4
gpt4 key购买 nike

假设我有一个名为“run.py”的脚本,我该怎么做?

C:\Users\Administrator>run

然后这个脚本就会被执行。请注意,我不希望在“运行”之后显示“.py”。我正在使用 python 3.3.5,我尝试将 'C:/python33' 放入环境变量路径中。但它没有用。它似乎只有在它是“.exe”文件时才有效。

提前致谢。

最佳答案

您需要将 .py 添加到您的 PATHEXT 环境变量中。

来自 Windows 上的 Python FAQ,How do I make Python scripts executable?

On Windows, the standard Python installer already associates the .py extension with a file type (Python.File) and gives that file type an open command that runs the interpreter (D:\Program
Files\Python\python.exe "%1" %*
). This is enough to make scripts executable from the command prompt as ‘foo.py’. If you’d rather be able to execute the script by simple typing ‘foo’ with no extension you need to add .py to the PATHEXT environment variable.

设置环境变量的具体方法因 Windows 版本不同而异,但 this link或许可以帮助您。

关于python - 如何直接从 cmd 运行 .py 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26154272/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com