Pygame already installed; however, python terminal says “No module named 'pygame' ” (Ubuntu 20.04.1)

故事扮演 提交于 2021-01-29 21:04:46

问题


I'm using Ubuntu 20.04.1 LTS. I have installed pygame with sudo apt-get install python-pygame. However, when I run my code using VS code, the python terminal gives the output below:

Traceback (most recent call last):
  File "path", line 1, in <module>
    import pygame
ModuleNotFoundError: No module named 'pygame'

I tried to reinstall Pygame using the same command. Here is the output:

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.

Basically, I already have pygame installed. So what do you think might be the reason? My Python version is 3.8.2.

Thanks in advance!


回答1:


There isn't a release build of pygame 1.9.6 for Python 3.8.2. Install a development version:

python3 -m pip install pygame==2.0.0.dev10


来源:https://stackoverflow.com/questions/64016215/pygame-already-installed-however-python-terminal-says-no-module-named-pygame

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!