"No module named pygame" 在 python 到 exe 文件
"No module named pygame" on a python to exe file
我在用 auto_py_to_exe 测试 pygame 时出现了这个错误:
Traceback (most recent call last):
File "drawrect.py", line 1, in <module>
ModuleNotFoundError: No module named 'pygame'
图片:
代码:
import pygame
Rect = pygame.Rect(0, 0, 150, 150)
Rect.center = (240, 240)
white = (255, 255, 255)
surface = pygame.display.set_mode((480, 480))
pygame.init()
while True:
surface.fill((0, 0, 0))
pygame.draw.rect(surface, white, Rect)
pygame.display.update()
pip install pygame
是您要查找的命令。
运行 在您的终端中执行此命令,然后重试。
我在用 auto_py_to_exe 测试 pygame 时出现了这个错误:
Traceback (most recent call last):
File "drawrect.py", line 1, in <module>
ModuleNotFoundError: No module named 'pygame'
图片:
代码:
import pygame
Rect = pygame.Rect(0, 0, 150, 150)
Rect.center = (240, 240)
white = (255, 255, 255)
surface = pygame.display.set_mode((480, 480))
pygame.init()
while True:
surface.fill((0, 0, 0))
pygame.draw.rect(surface, white, Rect)
pygame.display.update()
pip install pygame
是您要查找的命令。
运行 在您的终端中执行此命令,然后重试。