安装后使用 pygame 时出错
having errors using pygame after installing it
我已从命令提示符成功安装 pygame,消息是这样的:
Collecting pygame
Using cached pygame-2.1.2-cp310-cp310-win_amd64.whl (8.4 MB)
Installing collected packages: pygame
Successfully installed pygame-2.1.2
当我在 vs 代码中导入 pygame 和 运行 代码时,它没有给我一个错误
我的问题是当我使用 pygame 编写简单代码时出现错误
代码:
import pygame
pygame.init()
screen = pygame.display.set_mode((800,400))
当我 运行 这段代码时,它给了我这个:
Traceback (most recent call last):
File "c:\Users\itsae\Documents\Phyton\pygame\pygame.py", line 1, in
import pygame
File "c:\Users\itsae\Documents\Phyton\pygame\pygame.py", line 3, in
pygame.init()
AttributeError: partially initialized module 'pygame' has no attribute 'init' (most likely due to a circular import)
我的 python 版本:3.10.4
你的文件名是什么?
如果是 pygame.py 将其重命名为另一个名称
因为 python 识别出您的文件是 pygame 和
当你给出 pygame.init() python 时将检查你的文件中的 init()
函数并且没有 init() 函数,它会引发错误!
尝试重命名为其他名称,例如 PygameFile.py
我已从命令提示符成功安装 pygame,消息是这样的:
Collecting pygame Using cached pygame-2.1.2-cp310-cp310-win_amd64.whl (8.4 MB) Installing collected packages: pygame Successfully installed pygame-2.1.2
当我在 vs 代码中导入 pygame 和 运行 代码时,它没有给我一个错误
我的问题是当我使用 pygame 编写简单代码时出现错误
代码:
import pygame
pygame.init()
screen = pygame.display.set_mode((800,400))
当我 运行 这段代码时,它给了我这个:
Traceback (most recent call last): File "c:\Users\itsae\Documents\Phyton\pygame\pygame.py", line 1, in import pygame File "c:\Users\itsae\Documents\Phyton\pygame\pygame.py", line 3, in pygame.init() AttributeError: partially initialized module 'pygame' has no attribute 'init' (most likely due to a circular import)
我的 python 版本:3.10.4
你的文件名是什么?
如果是 pygame.py 将其重命名为另一个名称
因为 python 识别出您的文件是 pygame 和
当你给出 pygame.init() python 时将检查你的文件中的 init() 函数并且没有 init() 函数,它会引发错误!
尝试重命名为其他名称,例如 PygameFile.py