pyinstaller

    2熱度

    2回答

    現在是否有一個簡單的協議,從python 3.5+,使用模塊pyqtgraph,qt5,theano,pymc3,numpy,scipy,os和sys建立一個.exe,並打開一個簡單的GUI存儲在'.ui'文件?我輸了幾個小時,最終沒能輸出一個(對於w7-64比特)。幫幫我 ! py2exe初步失敗:我首先安裝py2exe for python 3,但事實證明這與我的python 3.6不兼容,所

    1熱度

    1回答

    我想使用pyinstaller創建我的python腳本的.exe文件。創建成功的exe文件,但是當我嘗試運行它,CMD給出了錯誤: Import Error: Astropy requires the 'six' module of minimum version 1.10; normally this is bundled with the astropy package so if you g

    0熱度

    1回答

    在同一目錄下運行PowerShell的爲: pyinstaller --onefile --icon=<my_Logo.ico> BC-USD.py 它總是以相同的錯誤結束: pywintypes.error: (2, 'LoadLibraryEx', 'The system cannot find the file specified.') 哪有我解決這個問題?

    0熱度

    1回答

    剛剛開始使用Pyinstaller(並且有點與Tk窗口),並且無法讓我的tkinter Windows應用程序(在python 3.5下)成功運行。我可能會做一些愚蠢的事情,但我已經嘗試了一切我知道的事情,而且我真的需要這樣做,所以任何幫助都非常感謝。只需要注意,我的所有代碼都可以在正常的python 3.5.1下運行& 3.5.3。安裝最新版本的PyInstaller(3.2.1),它似乎運行正

    1熱度

    1回答

    我試圖運行在Python應用程序可執行以下代碼所做使用 pyinstaller -w -F script.py :當按下一個按鈕的Tkinter def ffmpeg_command(sec): cmd1 = ['ffmpeg', '-f','gdigrab','-framerate',config.get('FFMPEG_Settings','Framerate'),'-i','des

    0熱度

    1回答

    當試圖運行腳本擠滿了pyInstaller我得到 AttributeError: module 'nbt' has no attribute 'world' 上是from nbt import nbt線1。 這發生在Linux和Windows上。 我試過不同的進口產品,如from nbt.nbt import NBTFile或import nbt。 如果我註釋掉這一行,那麼其他所有導入都會運行,並

    0熱度

    1回答

    我試圖用Pyinstaller捆綁使用SciPy的腳本(具體而言,從interp1d功能scipy.interpolate) 雖然它通常在Python工作對我來說很好,我得到的錯誤ImportError: No module named 'scipy' 我用一個簡單的腳本,只是導入包試過 import scipy 的Pyinstaller代碼 pyinstaller path/to/code.

    1熱度

    1回答

    我正在尋找將python源代碼編譯爲二進制文件。出於性能原因,我通常使用pypy(使用pypy,我的應用程序運行速度明顯加快)。我從2012年發現這個答案,說明使用任何現有工具(例如pyinstaller)將pypy編譯爲二進制文件是不可能的。 Compile PyPy to Exe。我不能完全按照最高響應解釋的解決方案。 我很納悶: 現在有沒有一個合理的簡單的方法來編寫Python代碼使用pyp

    1熱度

    2回答

    我使用pyinstaller(v3.2.1)來建立一個--onefile的Windows EXE。我在我的python(v3.5.3)腳本中使用多處理。我已經實現了下面提到的Windows解決方法。 Recipe Multiprocessing 從邏輯上講,除非要求/條件得到滿足,並正按預期我的Python腳本不跨越多個過程。我遇到的問題是,無論何時涉及多個進程,一切似乎都很好。 但萬一,如果多進

    2熱度

    1回答

    我試圖從我的代碼使用PyQt5創建一個可執行文件。我使用Python 3.5.3 -64位,在Windows 10中開發,並使用pip來安裝pyinstaller 3.2.1。 我跑這樣pyinstaller: pyinstaller.exe --onefile --windowed main.py 我得到一個導入錯誤: File "C:\Python35\Scripts\pyinstalle