如何将Python代码打包为可执行文件

1,安装将python代码转换成exe的工具包pyinstall
在cmd输入命令

pip install pyinstall

清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
cmd中加入国内镜像下载工具包命令:

pip install -i http://mirrors.aliyun.com/pypi/simple/ pyinstaller

2,打包
在cms输入命令


>pyinstaller -F plane_main.py  planeBattle  --noconsole

如何将Python代码打包为可执行文件

上一篇:R语言-文件管理系统操作 list.files dir.file dir


下一篇:for循环中使用async/await