赞
踩
目录
PyInstaller是一个Python库,可以将Python代码打包成独立的可执行文件,可以在没有安装Python解释器的机器上运行,也可以在没有源代码的情况下共享和分发自己的应用程序。PyInstaller可以将Python代码转换为可执行文件,支持Windows、Mac OS X和Linux等操作系统。
使用PyInstaller可以让Python程序变得更加便携、易于分发和部署,同时也可以保护源代码,防止被反编译和修改。PyInstaller使用简单,只需要在命令行中输入命令即可将Python代码转换为可执行文件,还可以通过配置文件进行自定义设置。
在CMD中输入
pip install pyinstaller
The 'enum34' package is an obsolete backport of a standard library package and is incompatible with PyInstaller. Please conda remove enum34 then try again
pip uninstall enum34
The 'typing' package is an obsolete backport of a standard library package and is incompatible with PyInstaller. Please remove this package (located in C:\Users\HuiLong\AppData\Local\Programs\Python\Python39\lib\site-packages) using
"C:\Users\HuiLong\AppData\Local\Programs\Python\Python39\python.exe" -m pip uninstall typing
then try again.
pip uninstall typing
pyinstaller -F xxxx.py
例如
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。