要將Python代碼轉換為可執行文件,可以使用PyInstaller或cx_Freeze這樣的工具。
安裝PyInstaller:在命令行中運行 pip install pyinstaller
。
在命令行中導航到Python代碼所在的目錄。
運行 pyinstaller your_script.py
,其中 your_script.py
是你的Python腳本文件名。
PyInstaller將會在當前目錄中創建一個 dist
文件夾,其中包含可執行文件。
安裝cx_Freeze:在命令行中運行 pip install cx_Freeze
。
創建一個名為 setup.py
的文件,內容如下:
from cx_Freeze import setup, Executable
setup(
name="Your Program",
version="1.0",
description="Description of your program",
executables=[Executable("your_script.py")],
)
在命令行中導航到 setup.py
文件所在的目錄。
運行 python setup.py build
。
cx_Freeze將會在當前目錄中創建一個名為 build
的文件夾,其中包含可執行文件。
無論使用PyInstaller還是cx_Freeze,你都可以根據需要進行更多的配置,例如添加圖標、指定輸出文件名等。詳細的文檔可以在官方網站上找到。