无法安装适用于 Python 3.5.1 的 Pygame

无法安装适用于 Python 3.5.1 的 Pygame

我尝试在 Ubuntu 15.04 上将 Kivy 1.8.0 与 Python 3.5.1 结合使用。Kivy
生成一个错误:

致命错误:窗口无可用:中止。

过了一段时间我才知道它需要 PyGame,但我不知道如何找到并安装适用于 Python3.5.1 的 PyGame。

我请求解决以下问题:

  1. 在 Python3.5.1 上安装 pygame

答案1

我在Pygame 维基

Python 3.x

#install dependencies
sudo apt-get install mercurial python3-dev python3-setuptools python3-numpy python3-opengl libav-tools libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-ttf2.0-dev libsmpeg-dev libsdl1.2-dev libportmidi-dev libswscale-dev libavformat-dev libavcodec-dev libtiff5-dev libx11-6 libx11-dev fluid-soundfont-gm timgm6mb-soundfont xfonts-base xfonts-100dpi xfonts-75dpi xfonts-cyrillic fontconfig fonts-freefont-ttf

# Grab source
hg clone https://bitbucket.org/pygame/pygame

# Finally build and install
cd pygame
python3 setup.py build
sudo python3 setup.py install

# Run some tests
python3 -m pygame.tests
python3 -m pygame.examples/aacircle
python3 -m pygame.examples/aliens
python3 -m pygame.examples/freetype_misc
python3 -m pygame.examples/glcube
python3 -m pygame.examples/sound
python3 -m pygame.examples/stars

您还可以通过import pygame在 IDLE 中运行来检查安装。

相关内容