Pyinstaller是一个著名Python第三方库,可将Python文件打包为exe文件,并在没有Python的电脑上像普通应用程序一样执行。另一个库,py2exe,也可以做到这个功能,不过他对Python3的支持不太好,并且已经停止了开发。
安装:
Linux/UNIX
sudo pip3 install pyinstaller
OSXpip3 install pyinstaller
Windowspip3 install pyinstaller -u
这里讲一下它的使用方法。pyinstaller [数据] [参数]
主要参数:
-F 输入文件
-D 以runtime模式打包的输入文件(就是包含整个python解释器,import的库不加密,大型软件建议不要使用以防被破解)
-i exe文件的图标(属性无法更改)
-w 不出现小黑框(Windows)
-c 强制出现小黑框(Windows)
比如,我需要写一个Hello world,然后发给我的朋友,他没有装python。
helloworld.py
print("Hello world")
input()
那么我们可以这样做:pyinstaller -F helloworld.py
等待一堆输出之后,我们可以在/dist/目录下找到helloworld.exe,点击运行:
Hello world
(回车)
更多玩法期待作者的探究!