gpt4 book ai didi

python - PySImpleGui 错误代码 AttributeError : module 'PySimpleGUI' has no attribute 'Popup'

转载 作者:太空宇宙 更新时间:2023-11-03 21:21:07 24 4
gpt4 key购买 nike

只是试图显示一个简单的窗口,我收到此错误代码:

AttributeError:模块“PySimpleGUI”没有属性“Popup”

import PySimpleGUI as sg


sg.Popup('this is my first popup')

最佳答案

这听起来像是一个错误的安装,或者您的路径中有另一个 PySimpleGUI.py 文件。如果您使用的是 PyCharm,请按住 Control 键并单击“PySimpleGUI”一词,看看它会带您到哪里。

您能提供有关运行时设置的信息吗? Windows/Linux?版本(Python、PySimpleGUI)等

您可以通过输入获取 PySimpleGUI 版本

pip show PySimpleGUI

可能值得卸载并重新安装

pip uninstall PySimpleGUI

pip install --no-cache-dir --upgrade PySimpleGUI

[编辑]

准确了解导入的内容通常很有帮助。这可以通过在导入后添加打印来实现。

import PySimpleGUI as sg
print(sg)

这将告诉您 PySimpleGUI.py 文件的位置。如果您从路径中的某个地方获得一个,但您不知道确切的位置,那么这非常方便。

关于python - PySImpleGui 错误代码 AttributeError : module 'PySimpleGUI' has no attribute 'Popup' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54240983/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com