Python
Windows
1.安装pyinstaller
pip install pyinstaller
2.执行命令打包
//gui程序,不需要命令行
pyinstaller -F -w main.py
//非gui程序,需要命令行
pyinstaller -F main.py
Mac
1.安装py2app
pip install py2app
2.生成初始化文件
py2applet --make-setup main.py
3.开始打包应用
python setup.py py2app
GoLang
go语言直接使用go build就可以生成可执行文件,这里描述一下交叉编译
Mac 下编译Linux和Windows64
CGO_ENABLED=0 GOOS=linux GOARCH=amd64
CGO_ENABLED=0 GOOS=windows GOARCH=amd64
Linux 下编译Mac和Windows64
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64
CGO_ENABLED=0 GOOS=windows GOARCH=amd64
Windows 下编译Mac和Linux 64
SET CGO_ENABLED=0
SET GOOS=darwin
SET GOARCH=amd64
SET CGO_ENABLED=0
SET GOOS=linux
SET GOARCH=amd64
参考
https://blog.csdn.net/mrlevo520/article/details/51840217
https://blog.csdn.net/panshiqu/article/details/53788067
有疑问加站长微信联系(非本文作者)