试图在ubuntu上安装pygame,结果出现错误



我正试图使用pip安装pygame,但无论何时,我都会收到错误Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-hZGMxh/pygame/。在我访问过的网站上,谷歌显示了更新安装工具的错误。我这样做,但它告诉我已经有了最新版本。以下是我尝试安装它时收到的错误。我需要它使用HyperGAN,所以我无法安装python3-pygame,因为它不是作为pygame安装的,所以我安装了一个名为"pygame"的无模块。非常感谢。

dan@dan-VirtualBox:/home$ python -m pip install pygame
Collecting pygame
Using cached https://files.pythonhosted.org/packages/ea/00/c8c0432a84fce4061fc9799747ea205805e247c559db1b71ac9f768e38e0/pygame-1.9.4.post1.tar.gz
Complete output from command python setup.py egg_info:

WARNING, No "Setup" File Exists, Running "config.py"
Using UNIX configuration...
Package freetype2 was not found in the pkg-config search path.
Perhaps you should add the directory containing `freetype2.pc'
to the PKG_CONFIG_PATH environment variable
No package 'freetype2' found
Package freetype2 was not found in the pkg-config search path.
Perhaps you should add the directory containing `freetype2.pc'
to the PKG_CONFIG_PATH environment variable
No package 'freetype2' found
Package freetype2 was not found in the pkg-config search path.
Perhaps you should add the directory containing `freetype2.pc'
to the PKG_CONFIG_PATH environment variable
No package 'freetype2' found
sh: 1: freetype-config: not found
sh: 1: freetype-config: not found
sh: 1: freetype-config: not found
Hunting dependencies...
WARNING: "pkg-config freetype2" failed!
WARNING: "freetype-config" failed!
SDL     : found 1.2.15
FONT    : found
IMAGE   : found
MIXER   : found
PNG     : found
JPEG    : found
SCRAP   : found
PORTMIDI: found
PORTTIME: found
FREETYPE: not found
Missing dependencies
----------------------------------------

命令"python setup.py egg_info"失败,错误代码为1/tmp/pip构建hZGMxh/pygame/

最新的pygame没有所有的二进制包(又名轮子(。试着安装一个旧的。

% pip install pygame==1.9.4

或者按照缺失的依赖项进行安装。

% sudo apt install libfreetype6-dev

祝你好运!

最新更新