web-dev-qa-db-ja.com

matplotlibのインストールエラー

Ubuntu 15.04(Python 2.7.9)でmatplotlibを使用してpipをインストールしようとすると、次のエラーが発生しました。

Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in main
    status = self.run(options, args)
  File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 304, in run
    requirement_set.prepare_files(Finder, force_root_Egg_info=self.bundle, bundle=self.bundle)
  File "/usr/lib/python2.7/dist-packages/pip/req.py", line 1230, in prepare_files
    req_to_install.run_Egg_info()
  File "/usr/lib/python2.7/dist-packages/pip/req.py", line 326, in run_Egg_info
    command_desc='python setup.py Egg_info')
  File "/usr/lib/python2.7/dist-packages/pip/util.py", line 716, in call_subprocess
    % (command_desc, proc.returncode, cwd))
InstallationError: Command python setup.py Egg_info failed with error code 1 in /tmp/pip-build-hP0laO/matplotlib

正直に言って、setup.pyの呼び出しが失敗した理由はわかりません。

4
Mast

Matplotlibと他の scipy のようなパッケージを使用していますipythonおよびnumpyUbuntu 15.04で。 Ubuntuリポジトリからインストールしました。 python-matplotlibapt-getをインストールする必要があるかもしれません

実行しようとしましたか:Sudo apt-get update; Sudo apt-get install python-matplotlib

2
J.Serra

まだインストールしていない場合は、setuptoolsをインストールします。このダウンロード ez_setup.py ファイルを実行するには、ダウンロードしたフォルダーに移動して実行します。

python ez_setup.py

またはpypi docs で説明したように、適切なバージョンをダウンロードしてインストールする次のコマンドを使用することもできます

wget https://bootstrap.pypa.io/ez_setup.py -O - | Sudo python
0
Ron