线程无法正确使用pyinstall

问题描述 投票:0回答:1
i试图将tkinter脚本编译到Pyinstall中,但是当我打开.exe文件时,它会显示错误。我的tkinter脚本

has线程。这是堆栈跟踪的屏幕截图,在speedtest.py中显示了未经处理的异常。 也是我用于编译的代码: process = subprocess.Popen( r'pyinstaller.exe --onefile --noconsole --distpath D:\PythonProjects\Speedtest Speedtest.py', stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE, shell=True) output, error = process.communicate() if error: print(error.decode()) if output: print(output.decode())

我尝试了:

改变-Noconsole至 - 窗口

填充

stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE
  • dreating-不可行的选择,我在.exe file
  • 时不需要控制台 此外,这里是
    SpeedTest.py
from tkinter import * from tkinter import ttk from speedtest import Speedtest import threading root = Tk() root["bg"] = "#fafafa" root.geometry("300x400") root.title("Speedtest") root.iconbitmap("icon.ico") root.resizable(False, False) style = ttk.Style() style.configure("TButton", font=("Comic Sans MS", 20)) def speedtest(): downloadText.config(text="Download Speed:\n-") uploadText.config(text="Upload Speed:\n-") pingText.config(text="Ping:\n-") st = Speedtest() errorText.place_forget() analyzingText.place(anchor=CENTER, relx=0.5, rely=0.92) downloadSpeed = round(st.download() / (10 ** 6), 2) uploadSpeed = round(st.upload() / (10 ** 6), 2) pingSpeed = st.results.ping downloadText.config(text="Download Speed:\n" + str(downloadSpeed) + " Mbps") uploadText.config(text="Upload Speed:\n" + str(uploadSpeed) + " Mbps") pingText.config(text="Ping:\n" + str(pingSpeed) + " Ms") analyzingText.place_forget() def speedtestChecked(): try: speedtest() except Exception: analyzingText.place_forget() errorText.place(anchor=CENTER, relx=0.5, rely=0.92) def startSpeedtestThread(): speedtestThread = threading.Thread(target=speedtestChecked) speedtestThread.start() speedtestButton = ttk.Button(root, text="Start Speedtest", style="TButton", command=startSpeedtestThread) speedtestButton.pack(side=BOTTOM, pady=60) analyzingText = Label(text="Analyzing...", bg="#fafafa", font=("Comic Sans MS", 17)) errorText = Label(text="Error occurred!", bg="#fafafa", font=("Comic Sans MS", 17), fg="#a83636") downloadText = Label(text="Download Speed:\n-", bg="#fafafa", font=("Comic Sans MS", 17)) uploadText = Label(text="Upload Speed:\n-", bg="#fafafa", font=("Comic Sans MS", 17)) pingText = Label(text="Ping\n-", bg="#fafafa", font=("Comic Sans MS", 17)) downloadText.place(anchor=CENTER, relx=0.5, rely=0.13) uploadText.place(anchor=CENTER, relx=0.5, rely=0.35) pingText.place(anchor=CENTER, relx=0.5, rely=0.57) root.mainloop()

错误时,错误是由于线程和某些库在创建独立可执行文件时如何交互引起的。 这些可能会有所帮助

handle'Stdout'和'stderr'
删除'stdout = subprocess.pipe,stderr = subprocess.pipe,stdin = subprocess.pipe.pipe'选项'subprocess.popen()'调用。编译时,重定向这些有时会在GUI应用中引起问题。
python tkinter compiler-errors pyinstaller
1个回答
0
投票
add

AttributeError: 'NoneType' object has no attribute 'fileno'

对于缺少模块
py installer
或其他库可能会动态导入某些模块,而Pyinstaller无法检测到这些模块。

确保适当的外部资源路径 确保在程序作为可执行文件运行时可以访问“ icon.ico”。您可能需要使用pyinstaller指定相对路径或包装:

  1. 使用高级配置的规格文件

  2. 
    
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.