在本機開發python腳本,執行python程序,必須要安裝python環境對不對,但是我如果做了一個小工具,還不能直接在別人的機子上直接運行,也要在別人的機子上裝python環境,好麻煩。
我想問一下goagent也是python開發的,它為什麼下載下來可以直接在本機運行,怎麼做到的?
看看網友在V2EX上的回答:
pyinstaller
因為gae打包了一個綠色版python在你下載的壓縮包裡。
cx_Freeze is a set of scripts and modules for freezing Python scripts into executables, in much the same way that py2exe and py2app do. Unlike these two tools, cx_Freeze is cross platform and should work on any platform that Python itself works on. It supports Python 2.6 or higher (including Python 3).
也可以考慮 Cython 吧