web-dev-qa-db-ja.com

インストールエラー「pyplotの要件を満たすバージョンが見つかりませんでした」の修正方法

次のようにpyplotをインストールしようとしています。

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

何が間違っていますか?
私のプラットフォームが満たしていない条件は何ですか?

Ubuntu 16.04 LTS(64bit)を使用しています。
いくつかの詳細なコンテキストを提供するために、ここに私のパッケージバージョンをいくつか示します。

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
2
Tano

pyplotmatplotlibの一部です。
pyplotをインストールするには、matplotlibをインストールする必要があります

matplotlibインストール手順

  • パッケージマネージャーの使用:

    Sudo apt-get install python3-matplotlib
    
  • AnacondaまたはCanopyをインストールします。これらは両方ともすぐに使用できる優れた選択肢です。

3
Yaron