视频:点击播放
images
,下载图像import pygame,sys
pygame.init()
screen = pygame.display.set_mode((600,400))
pygame.display.set_caption("星火工坊")
ball = pygame.image.load("images/ball.gif")
ball_rect = ball.get_rect()
while True:
for e in pygame.event.get():
if e.type == pygame.QUIT:
sys.exit()
screen.fill((0,0,0))
screen.blit(ball, ball_rect)
pygame.display.update()
当运行程序时,出现下列问题:
Traceback (most recent call last):
File "e:\我的教程\python\pygame\temp.py", line 1, in
import pygame,sys
ModuleNotFoundError: No module named 'pygame'
这时,需要安装pygame库,同时这也说明在编写python程序时,需要用到的一些在python程序中没有的东西,这些需要我们额外的安装,在以后的编程中,我们经常需要安装一些第三方库。
安装pygame库的方法是:
pip install pygame
当运行上面的命令,若出现下面的提示:
pip : 无法将“pip”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。 所在位置 行:1 字符: 1 + pip install pygame + ~~~ + CategoryInfo : ObjectNotFound: (pip:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
这时重新启动电脑一般能解决。