我使用的是Ubuntu 20.04.1 LTS。我已经用sudo安装了pygame apt-get-install python pygame。然而,当我使用VS代码运行代码时,python终端会给出以下输出:
Traceback (most recent call last):
File "path", line 1, in <module>
import pygame
ModuleNotFoundError: No module named 'pygame'
我试着用同样的命令重新安装Pygame。这是输出:
Reading package lists... Done
Building dependency tree
Reading state information... Done
python-pygame is already the newest version (1.9.6+dfsg-2build1).
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
基本上,我已经安装了pygame。那么你认为可能是什么原因呢?我的Python版本是3.8.2。
提前感谢!
Python2.8.2没有pygame 1.9.6的发布版本。安装开发版本:
python3 -m pip install pygame==2.0.0.dev10