如何正确安装 matplotlib?

如何正确安装 matplotlib?

我使用命令安装了 matplot.lib sudo apt-get install python3-matplotlib

在运行用 Python 编写的程序时,它显示

Traceback (most recent call last):
  File "example.py", line 6, in <module>
    import matplotlib.pyplot as plt
ImportError: No module named matplotlib.pyplot

问题是什么以及如何正确安装 matplotlib?

我正在尝试运行一个计算折射率的程序,链接是https://github.com/polyanskiy/refractiveindex.info-scripts

答案1

apt-get install python3-matplotlib......它是python 2.7.12:将matplotlib.pyplot导入为plt

python 2.7.12没有使用“python3-matplotlib”,而是使用python-matplotlib。

python-matplotlib请也安装

答案2

尝试使用 pip 安装 matplotlib

pip3 install matplotlib

如果你的系统上没有安装 pip3,请尝试使用以下命令安装 pip

sudo apt-get install -y python3-pip

相关内容