如何修复安装错误“找不到满足要求 pyplot 的版本”?

如何修复安装错误“找不到满足要求 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(64 位)。
为了提供更多背景信息,下面是我的一些软件包版本:

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

答案1

pyplot是 的一部分matplotlib
要安装,pyplot您应该安装matplotlib

matplotlib安装说明

  • 使用包管理器:

    sudo apt-get install python3-matplotlib
    
  • 安装AnacondaCanopy两者都是开箱即用的绝佳选择。

相关内容