返回顶部
首页 > 资讯 > 精选 >AttributeError: ‘NoneType‘ object has no attribute ‘Window‘如何解决
  • 928
分享到

AttributeError: ‘NoneType‘ object has no attribute ‘Window‘如何解决

2023-07-05 12:07:41 928人浏览 薄情痞子
摘要

这篇文章主要讲解了“AttributeError: ‘NoneType‘ object has no attribute ‘Window‘如何解决”,文中的讲解内容简单清晰,易于学

这篇文章主要讲解了“AttributeError: ‘NoneType‘ object has no attribute ‘Window‘如何解决”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“AttributeError: ‘NoneType‘ object has no attribute ‘Window‘如何解决”吧!

报错问题

报错代码如下所示:

import pygletwindow = pyglet.window.Window(500, 500)

报错信息内容如下所示

Traceback (most recent call last):  File "/home/justin/.local/lib/python3.8/site-packages/pyglet/__init__.py", line 334, in __getattr__    return getattr(self._module, name)AttributeError: 'NoneType' object has no attribute 'Window'During handling of the above exception, another exception occurred:Traceback (most recent call last):  File "/home/justin/Dropbox/jr/py/pyglet_games/pyglet_demo/displaytest.py", line 5, in <module>    window = pyglet.window.Window(500, 500)  File "/home/justin/.local/lib/python3.8/site-packages/pyglet/__init__.py", line 340, in __getattr__    __import__(import_name)  File "/home/justin/.local/lib/Python3.8/site-packages/pyglet/window/__init__.py", line 1891, in <module>    gl._create_shadow_window()  File "/home/justin/.local/lib/python3.8/site-packages/pyglet/gl/__init__.py", line 220, in _create_shadow_window    _shadow_window = Window(width=1, height=1, visible=False)  File "/home/justin/.local/lib/python3.8/site-packages/pyglet/window/xlib/__init__.py", line 171, in __init__    super(XlibWindow, self).__init__(*args, **kwargs)  File "/home/justin/.local/lib/python3.8/site-packages/pyglet/window/__init__.py", line 573, in __init__    display = pyglet.canvas.get_display()  File "/home/justin/.local/lib/python3.8/site-packages/pyglet/canvas/__init__.py", line 94, in get_display    return Display()  File "/home/justin/.local/lib/python3.8/site-packages/pyglet/canvas/xlib.py", line 123, in __init__    raise NoSuchDisplayException('Cannot connect to "%s"' % name)pyglet.canvas.xlib.NoSuchDisplayException: Cannot connect to "None"

报错翻译

报错信息内容翻译如下所示

属性错误:“NoneType”对象没有属性“Window”
pyglet.canvas.xlib.NoSuch显示异常:无法连接到“None”

报错原因

报错原因:

在其他少数情况下,它不是以一种方式运行而不是以另一种方式工作的。大多数解决方案都涉及更改图形卡设置或运行X11服务器。这在这里似乎不相关,因为它似乎只与vscode相关。

小伙伴们按照下面的方法配置vscode即可即可!!!

解决方法

这是vscode内部终端的问题,将控制台设置为launch.json中的另一个选项解决了这个问题:

{    // Use IntelliSense to learn about possible attributes.    // Hover to view descriptions of existing attributes.    // For more infORMation, visit: https://Go.microsoft.com/fwlink/?linkid=830387    "version": "0.2.0",    "configurations": [        {            "name": "Python: Current File",            "type": "python",            "request": "launch",            "program": "${file}",            "console": "externalTerminal"        }    ]}

因此,事实上,在python脚本中添加以下内容可以解决问题(至少结合切换到Wayland):

import osos.environ['DISPLAY'] = ':1'

感谢各位的阅读,以上就是“AttributeError: ‘NoneType‘ object has no attribute ‘Window‘如何解决”的内容了,经过本文的学习后,相信大家对AttributeError: ‘NoneType‘ object has no attribute ‘Window‘如何解决这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

--结束END--

本文标题: AttributeError: ‘NoneType‘ object has no attribute ‘Window‘如何解决

本文链接: https://lsjlt.com/news/351839.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作