安装 pygame 时出错

安装 pygame 时出错

当我输入import pygameThonny 时出现错误。我安装pygamesudo apt-get install python-pygame,但它不起作用。有人能帮忙吗?

答案1

很可能你的默认 Python 版本是 Python3,而你安装的 Python 库是 Python2 的

您可以通过运行来验证这一点:

python --version

如果你没有python2:

apt-get install python2.7

然后明确启动 python2.7 并从那里运行 import pygame

相关内容