我安装了Python 2.7.14并且我使用的是Windows 10,我已经按照说明通过cmd提示符安装了pip并安装了pygame,但是,当我尝试运行代码时它告诉我没有名为pygame的模块。任何人都可以帮我这个吗?
以下是代码:
import pygame, sys
from pygame.locals import *
pygame.init()
screen = pygame.display.set_mode((640,480))
while 1:
for event in pygame.event.get():
if event. type == pygame.QUIT:
sys.exit()
screen.fill((255,255,255))
pygame.draw.circle(screen,(0,255,0),(100,150),20)
pygame.display.update()