Erro ao instalar o matplotlib

4

Eu recebi o seguinte erro ao tentar instalar o matplotlib usando pip no Ubuntu 15.04 (Python 2.7.9).

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

Para ser honesto, não tenho ideia de por que a chamada para setup.py falhou.

    
por Mast 07.08.2015 / 17:38

2 respostas

2

Estou usando o matplotlib e outros pacotes scipy como ipython e numpy No Ubuntu 15.04. Eu tenho eles instalados a partir dos repositórios do Ubuntu. Pode ser que você deve instalar o python-matplotlib com apt-get

Você tentou executar: sudo apt-get update; sudo apt-get install python-matplotlib

    
por J.Serra 09.08.2015 / 15:06
0

Você deseja instalar setuptools , se ainda não tiver feito isso. Para fazer isso, baixe o arquivo ez_setup.py , navegue até a pasta baixada e execute:

python ez_setup.py

ou como mencionado em docs docs , você também pode usar o seguinte comando para baixar a versão apropriada e instalá-la para você

wget https://bootstrap.pypa.io/ez_setup.py -O - | sudo python
    
por Ron 07.08.2015 / 19:47