gpt4 book ai didi

python - Chromebook 上没有视频设备

转载 作者:行者123 更新时间:2023-11-28 17:56:51 24 4
gpt4 key购买 nike

我正在尝试使用 pygame 在 googles colaboratory 中使用 pygame 编写游戏代码。我通过运行成功添加了 pygame:

import os
!git clone https://github.com/ntasfi/PyGame-Learning-Environment.git
os.chdir('PyGame-Learning-Environment')
!pip install -e .
!pip install pygame
os.chdir('/content')

但是当我写这段代码时:

import pygame
pygame.init()
BLACK = [0,0,0]
size = [100,100]
screen = pygame.display.set_mode((size))
screen.fill(BLACK)
screen.update()

pygame.quit()

我收到以下错误消息:

Traceback (most recent call last)
<ipython-input-10-b26800e3009a> in <module>()
BLACK = [0,0,0]
size = [100,100]
screen = pygame.display.set_mode((size))
screen.fill(BLACK)

错误:没有可用的视频设备

有什么方法可以让 pygame 检测笔记本电脑屏幕吗?

最佳答案

首先试试这个

import pygame
pygame.init()
BLACK = (0, 0, 0) #dont use []'s
WIDTH = 0 #yourwidth
HEIGHT = 0 #yourheight
screen = pygame.display.set_mode((WIDTH,HEIGHT))
screen.fill(BLACK)
running = True
while(running):
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False

关于python - Chromebook 上没有视频设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57804758/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com