gpt4 book ai didi

python - Pygame 窗口未在 macOS Catalina 上显示

转载 作者:行者123 更新时间:2023-12-03 14:55:03 26 4
gpt4 key购买 nike

运行:
macOS Catalina 10.15.1
python 3.8.0
Pygame 1.9.6
IDE - Visual Studio 代码 1.40.2

当我启动 Pygame 测试时:

python3 -m pygame.examples.aliens

音乐开始播放,大约 5 秒后应用程序关闭。没有窗口出现。 Dock 中的图标会一直显示,直到它关闭。

同样的事情发生在一个基本的测试代码上,比如
import pygame

pygame.init()
screen = pygame.display.set_mode((400, 300))
done = False

while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True

pygame.display.flip()

终端中没有错误消息。

有人有这个问题吗?我已经尝试从网站上重新安装 Python 3.8.0(在另一个线程中推荐)以及 Pygame。

最佳答案

此解决方案由 furas 提供在 this comment :

Maybe install Python 3.7. Python 3.8 is very new version and many modules are not ready or not tested for this version.


这适用于 Python 3.7.8。

关于python - Pygame 窗口未在 macOS Catalina 上显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59080679/

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