python ValueError:['text_font']不是支持的参数,请查看文档以了解支持的参数

a1o7rhls  于 2022-12-17  发布在  Python
关注(0)|答案(2)|浏览(130)

ValueError:['text_font']不是支持的参数。请查看文档以了解支持的参数。当我尝试在Visual Studio for python语言上运行GUI时,显示以下错误
我正在使用 windows 11

qcuzuvrc

qcuzuvrc1#

我有一些更多的问题解释,为用户sara Alqahtani〉〉,因为我面临着同样的错误,没有运气的解决方案..希望有人会弄清楚它.
我最近将customtkinter升级到最新版本,比如5.0,我使用pyinstaller将python脚本文件打包为可执行的exe文件,代码如下:

pyinstaller --noconfirm --onedir --windowed --add-data "c:\users\pcc\appdata\local\programs\python\python310\lib\site-packages/customtkinter;customtkinter/"  "main.py"

此代码,我的意思是exe文件,工作正常时,升级之前customtkinter,我使用的版本的东西像customtkinter 4. 0
因此升级后,此错误将引发:

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.
py49o6xq

py49o6xq2#

我正在更新一个旧的GUI,所以我去了CustomtKinter。我得到了同样的错误。文档确实说text_font=(“abc”,12)。但是当你查看模块时,有参数“font”,请用这个代替:
自定义标签=自定义打印机标签(主机=自定义帧,文本=“您的文本”,字体=(“机器人”,24))

相关问题