Como corrigir o erro de instalação “Não foi possível encontrar uma versão que satisfaça o requisito pyplot”?

1

Estou tentando instalar pyplot da seguinte forma:

x@y:~$ sudo -H pip3 install pyplot
Collecting pyplot
  Could not find a version that satisfies the requirement pyplot (from versions: )
No matching distribution found for pyplot

O que estou fazendo de errado?
Quais condições minha plataforma não conhece?

Estou usando o Ubuntu 16.04 LTS (64 bits).
Para fornecer algum contexto adicional, aqui estão algumas das versões do meu pacote:

x@y:~$ pip3 show pip
Name: pip
Version: 9.0.1
Summary: The PyPA recommended tool for installing Python packages.
Home-page: https://pip.pypa.io/
Author: The pip developers
Author-email: [email protected]
License: MIT
Location: /home/sebastian/.local/lib/python3.5/site-packages
Requires: 

x@y:~$ pip3 show matplotlib
Name: matplotlib
Version: 2.1.2
Summary: Python plotting package
Home-page: http://matplotlib.org
Author: John D. Hunter, Michael Droettboom
Author-email: [email protected]
License: BSD
Location: /usr/local/lib/python3.5/dist-packages
Requires: six, pyparsing, numpy, python-dateutil, pytz, cycler
    
por Tano 05.03.2018 / 14:07

1 resposta

1

pyplot faz parte de um matplotlib .
Para instalar o pyplot você deve instalar o matplotlib

matplotlib instruções de instalação

  
  • Usando o gerenciador de pacotes:

    sudo apt-get install python3-matplotlib
    
  •   
  • Instale Anaconda ou Canopy , que são excelentes escolhas que "simplesmente funcionam" prontas para uso.

  •   
    
por Yaron 05.03.2018 / 14:16