使用PyInstaller

时间:2018-09-21 15:13:39

标签: python pyinstaller

我想使用pyInstaller将带有命令行参数的python代码转换为Windows可执行文件。我按如下方式运行我的python程序

python myPython 1

1 个答案:

答案 0 :(得分:0)

首先,我想知道您在Google搜索中没有收到与此相关的文章。

首先通过运行此命令安装pyinstaller

pip install pyinstaller

有关其他帮助 https://pyinstaller.readthedocs.io/en/stable/installation.html

打开命令提示符,现在导航到python文件(使用cd命令)所在的目录,然后输入代码

pyinstaller --onefile .py

这将创建一个独立的可执行文件(我希望您正在询问)。以下是您错过阅读的stackoverflow问题的链接。编辑:在同一目录中,将创建一个文件夹dist,其中包含您的单个可执行文件。

How can I convert a .py to .exe for Python?