仍然无法在ubuntu上安装pygame

时间:2015-01-11 04:48:03

标签: linux ubuntu ffmpeg pygame

我尝试了三种不同的方法。最新的是遵循此处的说明:http://www.pygame.org/wiki/CompileUbuntu

但是当我输入第一行时

sudo apt-get install mercurial python-dev python-numpy ffmpeg \

我被告知

E: Package 'ffmpeg' has no installation candidate.

我继续说明,后来我被告知缺少一些依赖项(即使这些是我之前尝试安装的那些)。

然后我放入

sudo python3 setup.py install
它告诉我

src/_pygame.h:80:20: fatal error: Python.h: No such file or directory
 #include <Python.h>
                    ^
compilation terminated.
error: command 'i686-linux-gnu-gcc' failed with exit status 1

1 个答案:

答案 0 :(得分:0)

我最近遇到了这个问题。尝试:

sudo apt-get install python-pygame

如果这不起作用,您可以尝试重新安装python。以下命令行将删除所有python模块并重新安装python。之后再次尝试上面的命令。如果您有任何其他下载的python模块或空闲,则需要重新安装它们。

sudo apt-get purge python && sudo apt-get install python2.7