Failed to execute script "main" due to unhandled exception: ['text_font'] are not supported arguments. Look at the documentation for supported arguments
Traceback (most recent call last):
File "main.py", line 1161, in <module>
File "main.py", line 101, in __init__
File "customtkinter\windows\widgets\ctk_label.py", line 90, in __init__
check_kwargs_empty(kwargs, raise_error=True)
File "customtkinter\windows\widgets\utility\utility_functions.py", line 18, in check_kwargs_empty
raise ValueError(f"{list(kwargs_dict.keys())} are not supported arguments. Look at the documentation for supported arguments.")
ValueError: ['text_font'] are not supported arguments. Look at the documentation for supported arguments.
2条答案
按热度按时间qcuzuvrc1#
我有一些更多的问题解释,为用户sara Alqahtani〉〉,因为我面临着同样的错误,没有运气的解决方案..希望有人会弄清楚它.
我最近将customtkinter升级到最新版本,比如5.0,我使用pyinstaller将python脚本文件打包为可执行的exe文件,代码如下:
此代码,我的意思是exe文件,工作正常时,升级之前customtkinter,我使用的版本的东西像customtkinter 4. 0
因此升级后,此错误将引发:
py49o6xq2#
我正在更新一个旧的GUI,所以我去了CustomtKinter。我得到了同样的错误。文档确实说text_font=(“abc”,12)。但是当你查看模块时,有参数“font”,请用这个代替:
自定义标签=自定义打印机标签(主机=自定义帧,文本=“您的文本”,字体=(“机器人”,24))