ubuntu 安裝 pygame 很好玩的東西

2021-05-27 23:28:41 字數 792 閱讀 4387

1. 簡介

sudo apt-get install python-pygame

其餘原始碼和其他平台的安裝包如rpm可以訪問

找到。如果python沒有安裝開發庫,也會導致pygame不能安裝,比如找不到python.h 等檔案

sudo apt-get install python2.6-dev

根據機器python版本安裝相應的開發庫。我的python是2.6.4版本,所以安裝2.6的開發庫。

還需安裝python的numeric庫,用於處理向量和數值計算,某些遊戲需要。

sudo apt-get install python-numeric python-numpy python-scipy

5. 安裝pygame.再次執行

sudo ./config.py

sdl : found 1.2.14

font : found

image : found

mixer : found

smpeg : found 0.4.5

png : found

jpeg : found

scrap : found

portmidi: found

porttime: found

執行sudo python setup.py

成功後pygame即安裝完畢。如果有問題再根據錯誤安裝相應軟體和庫。

6.試用pygame

進入examples,執行

chmod +x *

./aliens.py

你就盡情的去試吧。

ubuntu 安裝 pygame 很好玩的東西

1.簡介 sudo apt get install python pygame 其餘原始碼和其他平台的安裝包如rpm可以訪問 找到。如果python沒有安裝開發庫,也會導致pygame不能安裝,比如找不到python.h 等檔案 sudo apt get install python2.6 dev ...

Pygame安裝教程

1 python version 檢視安裝的python版本,pip version 檢視安裝的pip版本,公升級pip命令 python m pip install upgrade pip 現在開啟cmd,檢視pip安裝版本,現在pip已經安裝完成了。cmd中輸入pip list 你會看到使用pi...

python 安裝 pygame 步驟!

python 版本的pygame 2 前提是你已經安裝好了 python 並配置了 python 環境變數 pygame 1.9.3 cp36 cp36m win amd64.whl 檔案 需要安裝pip,操作步驟如下 python setup.py install 2 新增環境變數c python...