Traceback (most recent call last): File “<stdin>“, line 1, in <module> ImportError: No module name

import matplotlib遇到以下问题
在这里插入图片描述

Traceback (most recent call last):
  File "", line 1, in <module>
ImportError: No module named matplotlib

解决办法:
安装matplotlib模块
如果是python2.xx版本的,在终端中输入:

python2 -m pip install matplotlib

如果是python3,则把口令中的python2换成python其他不变
安装运行画面:
Traceback (most recent call last): File “<stdin>“, line 1, in <module> ImportError: No module name_第1张图片
最后检测是否安装完成,输入python进入python环境:
导入模块:

import matplotlib

在这里插入图片描述
查看matplotlib版本://如果是python3,则该命令不可用。验证安装是否成功可绘制一个图案

matplotilib.__version__

图案的源码:

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.patches import Ellipse

fig, ax = plt.subplots(1, 2, subplot_kw={"aspect": "equal"})

angles = np.linspace(0, 180, 8)

ellipse = [Ellipse((3, 3), 4, 1, a) for a in angles]

for elle in ellipse:
    ax[0].add_patch(elle)
    elle.set_alpha(0.4)
    elle.set_color("#FF5511")

ax[0].axis([0, 6, 0, 6])

num = np.arange(0, 100, 1)

ellipse = [Ellipse(xy=np.random.rand(2)*10+1, width=np.random.rand(1), height=np.random.rand(1),
                   angle=np.random.rand(1)*360) for i in num]

for elle in ellipse:
    ax[1].add_patch(elle)
    elle.set_alpha(np.random.rand(1))
    elle.set_color(np.random.rand(3))

ax[1].axis([0, 12, 0, 12])

plt.tight_layout()

plt.show()

效果如图:
Traceback (most recent call last): File “<stdin>“, line 1, in <module> ImportError: No module name_第2张图片

到这完美解决问题

你可能感兴趣的:(python,深度学习)