如何安装 pyinstaller (windows)

How to install pyinstaller (windows)

我想将 .py 文件转换为 .exe 文件,以便在网页上执行它们。然而。执行此操作的每种方法都涉及我不知道如何安装的 pyinstaller。有人可以解释获取 pyinstaller 的过程或者告诉我是否有任何其他方法可以在不使用 pyinstaller

的情况下将 .py 转换为 .exe

正在安装 Pyinstaller
安装 pyinstaller 非常简单直接。您所要做的就是 pip install pyinstallerpython -m pip install pyinstaller(显然您必须确保您的 python 和 pip 在 PATH 中)。要检查 pyinstaller 是否安装正确,只需在你的 cmd 中输入 pyinstaller,如果没有出现错误,这意味着你已经安装了 pyinstaller。如果出于某种原因,pyinstaller 安装正确但仍然无法运行,您可能需要将其添加到 PATH 中。您可以考虑在 Path.

中添加 C:\Users\user_name\AppData\Roaming\Python\Python37\Scripts 使用 Pyinstaller
要将 .py 文件转换为 .exe 文件,您可以 运行 以下命令(确保您与 python 文件位于同一目录中)-

pyinstaller file_name.py - 简单地将您的 python 文件转换为可执行文件。这将创建一些文件夹和文件,当您 运行 您的 .exe 文件时,它将打开控制台和 运行 您的脚本。
pyinstaller -w file_name.py - 通过添加 -w,当 运行 连接您的 .exe 时,控制台将不再出现。
pyinstaller -F file_name.py - 通过添加 -F,只会创建一个文件夹,其中包含您的 .exe 而没有其他文件。
pyinstaller -i icon.ico filename.py - 通过添加 -i,您将能够添加 .ico 文件作为您的图标。

当然,您可以结合使用标志来获得更好的效果。

[外部链接]
使用 pyinstaller - https://pyinstaller.readthedocs.io/en/stable/usage.html#options
安装 pyinstaller - https://pyinstaller.readthedocs.io/en/stable/installation.html#installing-in-windows
pyinstaller 的工作 - https://pyinstaller.readthedocs.io/en/stable/operating-mode.html