How to install pygame on ubuntu

来源:互联网 发布:matlab解矩阵方程ax=b 编辑:程序博客网 时间:2024/06/06 02:12
如果是python 2.X

#install dependencies
sudo apt
-get install mercurial python-dev python-numpy ffmpeg \
    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

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

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




#如果是python
3.X

#install dependencies
sudo apt
-get install mercurial python3-dev python3-numpy ffmpeg \
    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

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

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