PyCharm 中產生可執行檔的位置取決於作業系統:Windows:pyinstaller - dist 資料夾;cx_Freeze - build 資料夾macOS:py2app - dist 資料夾(/Applications 下)Linux:pyinstaller - dist 資料夾;cx_Freeze - build 資料夾也可以指定特定輸出目錄:pyinstaller(--distpath)、cx_Freeze(-d)、py2app(--output)。
PyCharm 產生可執行檔的位置
在PyCharm 中產生可執行文件,具體位置取決於操作系統:
Windows
dist
文件夾中,位於PyCharm 專案目錄內。 build
資料夾中,位於 PyCharm 專案目錄內。 macOS
dist
資料夾中,位於PyCharm 專案的/Applications
資料夾內。 Linux
dist
資料夾中,位於PyCharm 專案目錄內。 build
資料夾中,位於 PyCharm 專案目錄內。 其他選項
除了上述位置外,您還可以指定特定的輸出目錄:
--distpath
選項。 -d
選項。 --output
選項。 確保您具有產生可執行檔的必要權限。如果您使用 Windows,您可能需要以管理員身分執行命令提示字元。
以上是pycharm產生執行檔在哪裡的詳細內容。更多資訊請關注PHP中文網其他相關文章!