'Cannot import name games'
'Cannot import name games'
我是初学者,到目前为止我已经投入了大约 3 个小时来安装 pygame(即让 python 解释器接受 'from livewires import games, color' 检查两个 'pygame' 'livewires' 已安装)。
然而,当我 运行 我的第一个源代码时,我得到了这个:
Traceback (most recent call last):
File "C:/Python31/Coding/pygame.py", line 4, in <module>
from livewires import games
File "C:\Python31\lib\site-packages\livewires\games.py", line 57, in <module>
import pygame, pygame.image, pygame.mixer, pygame.font, pygame.transform
File "C:/Python31/Coding\pygame.py", line 4, in <module>
from livewires import games
ImportError: cannot import name games
>>>
为什么会这样?有人有一些指示吗?我没有时间自己弄清楚,全职工作和生活很重要。
谢谢,
戴夫
代码:
# New graphics window
# Demo's creating a graphics window
from livewires import games
# initialize graphics screen
games.init(screen_width = 640, screen_height = 480, fps = 50)
# start mainloop
games.screen.mainloop()
您将代码脚本命名为 pygame.py
,这会与 pygame
库发生冲突。更改名称并重试。
当您尝试从 livrewires
import
并且在您当前的工作目录中有一个名为 pygame.py
.
的脚本时,就会发生这种情况
将 pygame.py
脚本重命名为其他名称。
我是初学者,到目前为止我已经投入了大约 3 个小时来安装 pygame(即让 python 解释器接受 'from livewires import games, color' 检查两个 'pygame' 'livewires' 已安装)。
然而,当我 运行 我的第一个源代码时,我得到了这个:
Traceback (most recent call last):
File "C:/Python31/Coding/pygame.py", line 4, in <module>
from livewires import games
File "C:\Python31\lib\site-packages\livewires\games.py", line 57, in <module>
import pygame, pygame.image, pygame.mixer, pygame.font, pygame.transform
File "C:/Python31/Coding\pygame.py", line 4, in <module>
from livewires import games
ImportError: cannot import name games
>>>
为什么会这样?有人有一些指示吗?我没有时间自己弄清楚,全职工作和生活很重要。
谢谢,
戴夫
代码:
# New graphics window
# Demo's creating a graphics window
from livewires import games
# initialize graphics screen
games.init(screen_width = 640, screen_height = 480, fps = 50)
# start mainloop
games.screen.mainloop()
您将代码脚本命名为 pygame.py
,这会与 pygame
库发生冲突。更改名称并重试。
当您尝试从 livrewires
import
并且在您当前的工作目录中有一个名为 pygame.py
.
将 pygame.py
脚本重命名为其他名称。