我在安装pygame时遇到问题。 我已经在网上寻找了很多解决方案,到目前为止都没有。
这是我的配置:
我安装了Windows 8和virtualbox。我在VirtualBox上安装了一个VM:redhat 64bits。这是我想要安装pygame的环境。
在这台VM上我已经安装了anaconda 2.1.0。
首先我想安装pygame-1.9.1release.tar.gz,但我在网上看到,Linux的redhat发行版是不可能的。 所以我一直在尝试通过执行以下操作来安装pygame-1.8.1release.tar.gz: 1)下载pygame-1.9.1release.tar.gz 2)
tar xvf pygame-1.8.1release.tar.gz
cd pygame-1.8.1release
python setup.py install
(N.B。:我已经处于根模式“su”)
我有错误信息:
WARNING, No "Setup" File Exists, Running "config.py"
Using UNIX configuration...
Hunting dependencies...
sh: sdl-config : commande introuvable
WARNING: "sdl-config" failed!
sh: smpeg-config : commande introuvable
WARNING: "smpeg-config" failed!
Unable to run "sdl-config". Please make sure a development version of SDL is installed.
所以我似乎也需要安装sdl-config和smpeg-config。 到目前为止我尝试了什么: 1)
sudo yum install rpm-build alsa-lib-devel libX11-devel libXScrnSaver-devel libXau-devel libXcursor-devel libXext-devel libXfixes-devel libXi-devel libXinerama-devel libXrandr-devel libXrender-devel libXxf86vm-devel mesa-libGL-devel pulseaudio-libs-devel
1错误)
Modules complémentaires chargés : product-id, refresh-packagekit, security, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Configuration du processus d'installation
file:///mnt/cdrom/repodata/repomd.xml: [Errno 14] Could not open/read file:///mnt/cdrom/repodata/repomd.xml
Essai d'un autre miroir.
Erreur : Cannot retrieve repository metadata (repomd.xml) for repository: LocalYumRepository. Please verify its path and try again
在寻找解决方案时,我意识到它可能是一个百胜错误。所以我跟着these instructions来清理我的百胜。之后它仍然不起作用。
2)我按照that post
的说明进行操作wget http://www.libsdl.org/release/SDL-1.2.14.tar.gz
tar -xzvf SDL-1.2.14.tar.gz
cd SDL-1.2.14
./configure
sudo make all
但是我收到了./configure行的错误:
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home/shad/Téléchargements/SDL-1.2.14':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
3)所以我做了that post
yum groupinstall "Development tools"
我得到与1)相同的错误。
我也做了
yum install gcc
我得到与1)相同的错误。
你能帮帮我吗? 实际上我只想下载并安装pyTagCloud并运行3行代码来获得一个好词云。谢谢,对不起,如果已经发布了解决方案,我确实搜索了一个。
沙德