import pygame
pygame.init()
black = ( 0, 0, 0)
white = ( 255, 255, 255)
green = ( 0, 255, 0)
red = ( 255, 0, 0)
size=[700,500]
screen=pygame.display.set_mode(size)
pygame.display.set_caption("jons cool game")
我收到此错误:
Traceback (most recent call last):
File "C:\Users\Jonathan\Desktop\Pygame\Example.py", line 2, in <module>
import pygame
ImportError: No module named 'pygame'
我正在使用v3.3.1和pygame 3.3。
答案 0 :(得分:3)
根据ImportError
你没有用Python 3.3安装pygame。
在pygame的网站上没有3.3 version
。我建议使用Python 3.2并从pygame.org
答案 1 :(得分:1)
你的pygame安装可能有问题。查看网站上的文档和教程,确保正确设置。