pyinstaller

    0熱度

    1回答

    我已經在Python 3.5.2上通過pip安裝了PyInstaller,但是我無法讓它工作。 在.py文件所在的文件夾中運行命令提示符並在'PyInstaller practicaGUI.py'中輸入後,我得到this錯誤。 有沒有辦法解決這個問題? 如果不是,還有什麼替代方案? 編輯: 我pyinstaller-script.py看起來像this

    0熱度

    1回答

    我嘗試了pyinstaller一個與控制檯和一個沒有一個選項。 我使用的是Windows 10,Python 3.5.4,Windows Chrome驅動程序2.33和Selnium 3.6.0以及Pyinstaller 3.3。 該一個而不控制檯失敗: 這裏是代碼Test.py #!python3 from selenium import webdriver # Chrome Proxy

    1熱度

    3回答

    我有一個腳本,需要能夠將自己的完整路徑保存到變量中。 到目前爲止,我曾嘗試: sys.argv[0] os.path.realpath(__file__) os.path.abspath(__file__) 這些與普通Python腳本我有所有的工作。但是,一旦我使用pyinstaller將其轉換爲可執行文件,上述方法不再適用於獲取.exe的路徑。他們要麼將.exe檢測爲.py,要麼完全不檢

    0熱度

    1回答

    我已經得到了我用pyInstaller創建一個exe文件一點點Python應用程序: import subprocess try: taskCommand = 'tasklist /FI "ImageName eq pc-client.exe"' reply = subprocess.Popen(taskCommand, stdout = subprocess.PIPE).

    3熱度

    2回答

    我嘗試安裝並運行它,但是我這樣做並不起作用。 C:\Users\Dino Non Admin>py -m pip install pyinstaller Collecting pyinstaller Using cached PyInstaller-3.3.tar.gz Requirement already satisfied: setuptools in c:\users\din

    2熱度

    1回答

    我想分發我的Python代碼運行Windows 7 +的機器上。它由幾個主文件爲cprofiles_lmfit.py的.py文件和一個文件cprofiles.ui組成,用於描述文檔的GUI和.pdf。 我有一個硬時間(參見build a .exe for Windows from a python 3 script importing theano with pyinstaller例如),但最終取

    1熱度

    1回答

    你好,我爲我的學習學習python。 現在我試圖使用pyinstaller來獲取.exe文件,因爲它更容易分享。 我的小程序使用Tkinter的,numpy的和matplotlib但是當我嘗試啓動它,什麼也沒有發生,它很奇怪,因爲我得到的編譯過程沒有錯誤: pyinstaller main.spec 531 INFO: PyInstaller: 3.4.dev0+133d18156 531 I

    1熱度

    1回答

    我運行下面的代碼: pyinstaller --onefile main.py main.py樣子: import sys import os sys.path.append(r'C:\Model\Utilities') from import_pythonpkg import * ...... import_pythonpkg.py樣子: from astroML.densit

    0熱度

    1回答

    我想創建一個包含PyQt5的獨立exe。我用PyInstaller和指定的文件夾在哪裏可以找到.dll如下: pyinstaller --paths C:\...\Anaconda3\Library\bin --onefile --windowed test.py 的exe創建成功,當我運行exe,將出現以下錯誤消息: FYI ,我的配置如下: Anaconda3 4.2.0與Python 3

    1熱度

    1回答

    我想問是否有可能使用pyinstaller沒有額外的文件('.dll'文件)和其他東西在輸出中。 我嘗試了一個使用簡單的腳本和使用pyinstaller,也許一個小時前,我不是很滿意它,似乎有很多額外的文件,我'只'喜歡有.exe文件,並沒有控制檯窗口。 感謝 我使用python 2.7和3.3 pyinstaller