本文介绍了PySImpleGui 错误代码 AttributeError: 模块 'PySimpleGUI' 没有属性 'Popup'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

只是试图让一个简单的窗口出现,我得到这个错误代码:

Just trying to make a simple window appear and I get this error code:

AttributeError: 模块 'PySimpleGUI' 没有属性 'Popup'

AttributeError: module 'PySimpleGUI' has no attribute 'Popup'

import PySimpleGUI as sg


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

推荐答案

你从没有 'Popup' 的地方导入 'PySimpleGUI'.

You import 'PySimpleGUI' from the place where no 'Popup'.

可能您将文件命名为 PySimpleGUI.py(并且在您的文件中没有弹出窗口").在这种情况下,重命名文件...

Probably you named your file PySimpleGUI.py (and in your file no 'Popup'). In this case rename the file...

或者它可能是文件所在目录中名为 PySimpleGUI.py 的其他文件(其中没有弹出窗口").

Or it might be other file with the name PySimpleGUI.py (where no 'Popup') in the directory where your file is.

Python 应该打开模块(其中存在 'Popup').

Python should open the module (where 'Popup' is present).

这篇关于PySImpleGui 错误代码 AttributeError: 模块 'PySimpleGUI' 没有属性 'Popup'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 16:53