如何将pyw文件转换成exe文件?
How to convert a pyw file to exe?
如何将 pyw 文件转换为 exe 使用 pyinstaller,如果不可能,我该如何使用 py2exe 来实现?
我正在使用 python 3 !
只需运行以下命令
pyinstaller -w your_file_name.pyw
注意:运行在上面command.To安装之前需要先安装pyinstaller,运行下面的命令
pip install pyinstaller
因为您使用 Python 3,所以无法使用 Py2exe(因为它仅适用于 Python 2)。
将您的 .pyw 程序重命名为 .py 和 运行(前提是您已经安装了 Pyinstaller):
pyinstaller file.py
并使用 --windowed
标志 。
如何将 pyw 文件转换为 exe 使用 pyinstaller,如果不可能,我该如何使用 py2exe 来实现?
我正在使用 python 3 !
只需运行以下命令
pyinstaller -w your_file_name.pyw
注意:运行在上面command.To安装之前需要先安装pyinstaller,运行下面的命令
pip install pyinstaller
因为您使用 Python 3,所以无法使用 Py2exe(因为它仅适用于 Python 2)。
将您的 .pyw 程序重命名为 .py 和 运行(前提是您已经安装了 Pyinstaller):
pyinstaller file.py
并使用 --windowed
标志