編譯為可執行檔全集

來源:互聯網
上載者:User

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=amd64CGO_ENABLED=0 GOOS=windows GOARCH=amd64
Linux 下編譯Mac和Windows64
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64CGO_ENABLED=0 GOOS=windows GOARCH=amd64
Windows 下編譯Mac和Linux 64
SET CGO_ENABLED=0SET GOOS=darwinSET GOARCH=amd64SET CGO_ENABLED=0SET GOOS=linuxSET GOARCH=amd64

參考
https://blog.csdn.net/mrlevo520/article/details/51840217
https://blog.csdn.net/panshiqu/article/details/53788067

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.