-1
我想將我的python腳本轉換爲exe,而不需要像ddl,pyd等附加文件。 這可能嗎?如何將python腳本轉換爲exe不需要額外的文件
我想將我的python腳本轉換爲exe,而不需要像ddl,pyd等附加文件。 這可能嗎?如何將python腳本轉換爲exe不需要額外的文件
使用pyinstaller https://github.com/pyinstaller/pyinstaller 在終端/主機 運行pip install pyinstaller
安裝它,然後運行pyinstaller --onefile yourscriptsname.py
,它會創建在同一個目錄
什麼腳本exe文件?你有什麼嘗試?發生了什麼? – jonrsharpe
Windows平臺?也許嘗試谷歌 - 一個程序已使用py2exe - http://www.py2exe.org/index.cgi/Tutorial – dbmitch
您可以使用pyinstaller安裝:http://stackoverflow.com/a/21000866/6833134如何使用:http://stackoverflow.com/a/34454262/6833134 – AlexDotis