一、pyinstaller简介
pyinstaller将Python脚本打包成可执行程序,使在没有Python环境的机器上运行
pyinstaller可运行在Windows,Mac和Linux操作系统下。
但它不是跨编译的,也就是说在Windows下用PyInstaller生成的exe只能运行在Windows下,在Linux下生成的只能运行在Linux下。
二、pyinstaller的安装
使用命令pip install pyinstaller
即可 在windows下,pyinstaller需要PyWin32的支持。当用pip安装pyinstaller时未找到PyWin32,会自动安装pypiwin32
三、打包成EXE文件
打包的app里并不包含任何源码,但将脚本的.pyc文件打包了。
基本语法: pyinstaller options myscript.py
实例:
pyinstaller -F random_cmd_test.py
-F: 生成的文件不需要依赖dll库等
文 | 力卉编程
网友评论