PYGame - ImportError:没有名为locals Raspberry Pi的模块

Wel*_*ing 0 python pygame raspberry-pi

我有以下代码:

 #!/usr/bin/python
 # -*- coding: iso-8859-15 -*-

 import pygame, random
 from pygame.locals import *
 pygame.init()
 clock = pygame.time.Clock()

 and so on
Run Code Online (Sandbox Code Playgroud)

应用程序都显示正常,但是当我编译代码时,我收到以下错误:

 Traceback (most recent call last):
 File "fish.py", line 4, in <module>
import pygame, random
 File "/home/pi/pygame/pygame.py", line 2, in <module>
ImportError: No module named locals


------------------
(program exited with code: 1)
Press return to continue
Run Code Online (Sandbox Code Playgroud)

有人可以帮忙吗?我是Python和Linux的新手.

我做了以下事情:

 pi@raspberrypi:~$ sudo apt-get install python-pygame
 Reading package lists... Done
 Building dependency tree       
 Reading state information... Done
 python-pygame is already the newest version.
 0 upgraded, 0 newly installed, 0 to remove and 40 not upgraded.
 pi@raspberrypi:~$ 
Run Code Online (Sandbox Code Playgroud)

slo*_*oth 6

您的问题是您有一个名为的文件pygame.py,或者是一个名为的文件遗留的字节码pygame.pyc.


调用import pygame工作,但它不会导入pygame,而是那个文件.

由于您的文件找不到locals该文件中指定的模块,因此会引发错误.

因此,只需将文件重命名为pygame.py您要导入的其他模块或其他模块,或者,如果有 pygame.pyc字节码文件,请将其删除.