无法将Matplotlib导入Python 3
作者:互联网
我试图自学编程,并在下载基本教程所需的模块时遇到麻烦.
我的最新尝试是将matplotlib模块放入我的Python 3环境中.我尝试了很多不同的安装软件包,并在互联网上找到了很多建议,以至于我不记得我最初是如何获得该模块的.但是,似乎一切都顺利完成了安装过程.
我在安装Raspbian OS的所有过程中都使用Raspberry Pi2.
Python 3.2.3 (default, Mar 1 2013, 11:53:50)
[GCC 4.6.3] on linux2
Type "copyright", "credits" or "license()" for more information.
>>> import matplotlib
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import matplotlib
ImportError: No module named matplotlib
解决方法:
您可能实际安装了python 2的库.我将使用pip来安装所需的模块.如果尚未安装,请在外壳程序中运行以下第一个命令:
sudo apt-get install python3-pip
可以在外壳程序中使用“ pip3”或“ pip-3.2”来调用该程序.
要使用它安装mathplotlib,请尝试运行:
pip3 install matplotlib
要么
pip-3.2 install matplotlib
那应该为您安装Python 3模块.
标签:matplotlib,install,raspberry-pi2,python 来源: https://codeday.me/bug/20191119/2035309.html