如何在Visual Studio中运行pygame?

时间:2018-12-21 04:15:51

标签: python visual-studio-2017 pygame

我已经安装了pygame,因为可以在IDLE中运行它,但是每当我尝试在Visual Studio 2017中运行游戏程序时,它都说没有名为pygame的模块。我需要配置或更改运行它吗?

我已经搜索过,发现的大部分内容要么是2015年的Windows上(我在Mac上),要么就是与我无关

#Game

#By Robert Smith

#Initialize python
import pygame
pygame.init()

#Set the screen
screen = pygame.display.set_mode((640, 480))
background = pygame.Surface(screen.get_size())
background.fill((255,255,255))
background = background.convert()

我希望VSCode可以从pygame启动屏幕。

0 个答案:

没有答案