2017-06-12 81 views
-1

這裏是什麼,我一直在經歷pygame的模塊正在導入在Python 2.7,但不是在3.x版

如果您發現任何重複的問題,請聯繫他們的image。我試圖尋找,但沒有發現任何這樣的pygame的

我發現this question,然後嘗試這樣:

apt-get install build-essential python3-dev python3-setuptools \ python3-pygame 

,但仍然無法正常工作

的錯誤是

Reading package lists... Done 
Building dependency tree  
Reading state information... Done 
E: Unable to locate package python3-pygame 

請建議我解決這個問題的方法

謝謝

回答

2

的Ubuntu沒有python3 pygame的包,你可以使用pip

apt-get install python3-pip python3-dev build-essential 
pip3 install pygame 
+0

很多很多的感謝insteadinstall它。並且非常感謝! – GLaDOS

相關問題