如何在 ubuntu 14 上的 python 2.7.6 中安装 pygame?

如何在 ubuntu 14 上的 python 2.7.6 中安装 pygame?

如何在 Ubuntu 14 上安装 Python 2.7.6 中的 pygame?我使用过sudo apt-get install python-pygame,但它不起作用并显示以下消息:unable to locate package python-pygame。我现在该怎么办?

答案1

在 Python 中安装 Python 模块的最佳方式是

sudo apt-get install python-pip

然后做

sudo pip install name_of_python_module

为你

sudo pip install pygame

如果你不确定某个模块的名称,你可以这样做

pip search name_of_python_module

它会给你搜索结果,并取名,然后按照上述方法安装

相关内容