怎么把python代码打包

python

打包Python代码可以使用pyinstaller

安装pyinstaller

python安装目录下shift+右键打开cmd 或者Powershell窗口输入

pip install pyinstaller

python安装目录下Scripts文件夹下会出现 pyinstaller.exe

添加环境变量

在系统变量PATH中再加入"python安装地址Scripts",否则cmd中会提示

‘pyinstaller’ 不是内部或外部命令

打包

在*.py文件目录下shift+右键打开cmd 或者Powershell窗口输入

pyinstaller -F test.py

文件夹下会生成一堆文件,在dist文件夹下会生成想要的exe文件

更多技术请关注云海天Python教程。

以上是 怎么把python代码打包 的全部内容, 来源链接: utcz.com/z/525679.html

回到顶部