Importerror: No Module Named 'matplotlib.pyplot'; Matplotlib Is Not A Package
I am trying to use matplotlib for real-time analysis from ECG-signals, but the problem starts even before. I use the PyCharm IDE, currently working with Python 3.3 and my os is Wi
Solution 1:
Your current project folder C:/Users/Timo/PycharmProjects/GUI_test/matplotlib.py
contains matplotlib.py
which causes this issue. Change the filename to anything else, which is not a name of a python package.
Post a Comment for "Importerror: No Module Named 'matplotlib.pyplot'; Matplotlib Is Not A Package"