绘制一个简单的图表

时间:2014-01-30 04:10:13

标签: python matplotlib

我正在尝试使用python绘制一个简单的图形。 我使用的代码如下

import matplotlib.pyplot as plt
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.show()

它抛出一个叫做的错误(导入错误:没有名为_path的模块) 错误信息如下。

Traceback (most recent call last):
  File "C:/Users/s siddharth kumar/Desktop/graph2.py", line 1, in <module>
    import matplotlib.pyplot as plt
  File "C:\Python27\lib\matplotlib\pyplot.py", line 26, in <module>
    from matplotlib.figure import Figure, figaspect
  File "C:\Python27\lib\matplotlib\figure.py", line 24, in <module>
    import matplotlib.artist as martist
  File "C:\Python27\lib\matplotlib\artist.py", line 7, in <module>
    from transforms import Bbox, IdentityTransform, TransformedBbox, \
  File "C:\Python27\lib\matplotlib\transforms.py", line 35, in <module>
    from matplotlib._path import (affine_transform, count_bboxes_overlapping_bbox,
ImportError: No module named _path

我是否需要在系统变量或其他任何内容中更改正在运行的python的路径。我安装了numpy,matplotlib以及其他所有内容但是我仍然无法在图表上绘制这些简单的值。

0 个答案:

没有答案