找不到Pygame的模块(Cant find Pygame Module)

2019-09-01 13:55发布

我刚开始游戏与pygame的蟒蛇发展,我有以下代码:

bif="main_background.jpg"
mif="player_head.png"

import pygame, sys
from pygame.locals import *

pygame.init()
screen=pygame.display.set_mode((640,360),0,64)

background=pygame.image.load(bif).convert()
mouse_c=pygame.image.load(mif).convert_alpha()

while True:
    for event in pygame.event.get():
        if event.type == QUIT:
            pygame.quit()
            sys.exit()

    screen.blit(background, (0,0))

    x,y = pygame.mouse.get_pos()
    x -= mouse_c.get_width()/2
    y -= mouse_c.get_height()/2

    screen.blir(mouse_c,(x,y))

    pygame.display.update()

我得到在Python以下错误:

Traceback (most recent call last):
  File "C:/Users/Eier/Documents/Code Developments/pygame.py", line 4, in <module>
    import pygame, sys
  File "C:/Users/Eier/Documents/Code Developments\pygame.py", line 5, in <module>
    from pygame.locals import *
ImportError: No module named locals
>>> 

如果有人知道如何让蟒蛇发现pygame的请回复。

谢谢 :)

Answer 1:

我敢肯定,约83.4%,你命名你的脚本pygame.py (或可能创建具有相同名称的另一个文件在同一目录作为脚本)。

如果你这样做,Python有没有办法知道你想,当你要加载哪些方式import pygame 。 这可能是你的脚本,也可能是已安装的软件包,它们都具有相同的名称。

是什么最终情况是, import pygame进口脚本,然后from pygame.locals import *查找一个模块调用locals你的脚本中。 由于你的脚本是一个脚本,而不是包装,巨蟒只是迷糊并打印混乱ImportError

Python 3.x都有给你一些解决这个办法,但2.x的不和我猜你使用2.x版本

所以,解决的办法是:

  • 重命名你的脚本mygame.py
  • 删除在同一目录作为脚本名的任何其他文件pygame.py


文章来源: Cant find Pygame Module
标签: python pygame