Python py檔案打包 exe 執行檔

markdown #說明 寫完的python 檔案想要在沒有 python 環境下執行,所以包裝成exe 的執行檔,蠻實用的功能。 #操作流程 1.先安裝套件 ``` pip install pyinstaller ``` 使用 ananconda promp 輸入上述指令
安裝完成會顯示 "Successfully installled..." - 如果需要環境版本 : ``` activate python3 ``` - 參考 : https://www.zhihu.com/question/49144687 2. 移動到目標資料夾 這裡舉例目的資料夾路徑是 D:\X
``` D: cd D:\X ```
3.開始打包成 exe ``` pyinstaller -F Tofoulder.py ```
4.打包完成執行 打包好在 dist 目錄底下生成 exe 檔案,可以執行使用。
- 參考: - https://blog.csdn.net/zt_xcyk/article/details/73786659 - https://medium.com/pyladies-taiwan/python-%E5%B0%87python%E6%89%93%E5%8C%85%E6%88%90exe%E6%AA%94-32a4bacbe351 - https://blog.csdn.net/yimingsilence/article/details/79388205

留言