I am using pycharm for python in windows 8. I have installed the package matplotlib.
I am using python 2.7
when i do import matplotlib there is no error.
However if i do matplotlib.pyplot as plt i am getting this following errors:
Traceback (most recent call last):
File "C:/Users/PiyushSudip/PycharmProjects/myFirst/test1.py", line 1, in <module>
import matplotlib.pyplot as plt
File "C:Python27libsite-packagesmatplotlibpyplot.py", line 23, in <module>
from matplotlib.figure import Figure, figaspect
File "C:Python27libsite-packagesmatplotlibfigure.py", line 18, in <module>
from axes import Axes, SubplotBase, subplot_class_factory
File "C:Python27libsite-packagesmatplotlibaxes\__init__.py", line 4, in <module>
from ._subplots import *
File "C:Python27libsite-packagesmatplotlibaxes\_subplots.py", line 10, in <module>
from matplotlib.axes._axes import Axes
File "C:Python27libsite-packagesmatplotlibaxes\_axes.py", line 18, in <module>
from matplotlib.cbook import _string_to_bool, mplDeprecation
ImportError: cannot import name _string_to_bool
can anyone help figure out what i am doing wrong?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…