我将如何将 Python 脚本制作成可执行文件?

How would I go about making a Python script into an executable?

我正在阅读我今天从 WHSmiths 购买的 "bookazine",上面写着 在设置过程中,我需要将这些命令输入终端(在我的例子中是命令提示符),以便制作脚本而无需手动执行。这些命令之一是 chmod +x(文件名),但因为这是基于 Linux 或 Mac 而我在 Windows 我不知道如何使我的脚本可执行,如何我呢?

提前致谢。

您在 Windows 上没有 shell 个脚本,您有批处理或电源 shell。

如果您正在阅读 Unix 知识,请获取虚拟机 运行(在此处插入流行的 Linux 发行版)。

关于python,你只要执行python script.py

在 Python 文档中对此有一小段摘录。

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.

https://docs.python.org/2/faq/windows.html

除此之外,如 cricket_007 所说,您可以将脚本执行为

C:\User\YourName> python yourscript.py