我正在尝试使用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-build-hZGMxh / pygame /
答案 0 :(得分:1)
最新的pygame并没有所有二进制包(也就是wheel)。尝试安装较旧的版本。
% pip install pygame==1.9.4
或者按照缺少的依赖项进行安装。
% sudo apt install libfreetype6-dev
祝你好运!