2016-09-28 38 views
1

私は、Ubuntu 16.04システムにpygameをインストールしようとしています。私のデフォルトのPythonは2.7.12です。私は、ターミナルを開いて、試してみました:ubuntuにpygameをインストールする

sudo apt-get install python-pygame 

私はこのメッセージを得た:私は、numpyのをインストールしようと除いて同じメッセージが表示されました

Reading package lists... Done 
Building dependency tree  
Reading state information... Done 
Some packages could not be installed. This may mean that you have 
requested an impossible situation or if you are using the unstable 
distribution that some required packages have not yet been created 
or been moved out of Incoming. 
The following information may help to resolve the situation: 

The following packages have unmet dependencies: 
python-pygame : Depends: python-numpy (>= 1:1.8.0) but it is not going to be installed 
       Depends: python-numpy-abi9 
E: Unable to correct problems, you have held broken packages. 

を:

The following packages have unmet dependencies: 
python-numpy : Depends: python:any (>= 2.7.5-5~) 

私は何をすべき?

+0

'pip'を試してみませんか? –

+0

Ubuntuのどのバージョンですか? Ubuntuでは(実際にはXubuntu)16.04 LTSは問題なくインストールされます。 – Nurjan

+0

私はUbuntu 16.04を使用しています...私はpipをインストールしようとしたときに同じエラーがあります。 – Jonathan

答えて

0

Pythonを再インストールするための端末コマンドが見つかりました:

sudo apt-get purge python && sudo apt-get install python2.7 
関連する問題