matplotlib wird nicht gefunden
Verfasst: Dienstag 14. Juli 2020, 09:33
Hallo liebes Python Forum,
vermutlich ist das ein einfacher Anfängerfehler:
Das Script:
import matplotlib.pyplot as plt
plt.plot([-1, -4.5, 16, 23, 15, 59])
plt.show()
ergibt bei mir folgenden Fehler:
C:\Users\Henfling\PycharmProjects\HenflingAuswertung\venv\Scripts\python.exe C:/Users/Henfling/PycharmProjects/HenflingAuswertung/Test.py
Traceback (most recent call last):
File "C:/Users/Henfling/PycharmProjects/HenflingAuswertung/Test.py", line 1, in <module>
import matplotlib.pyplot as plt
ModuleNotFoundError: No module named 'matplotlib'
Process finished with exit code 1
Python Version ist 3.8 und ich nutze PyCharm Communtiy 1.2.
matplotlib ist doch bei der Installation von Python dabei oder?
MfG
Daniel
vermutlich ist das ein einfacher Anfängerfehler:
Das Script:
import matplotlib.pyplot as plt
plt.plot([-1, -4.5, 16, 23, 15, 59])
plt.show()
ergibt bei mir folgenden Fehler:
C:\Users\Henfling\PycharmProjects\HenflingAuswertung\venv\Scripts\python.exe C:/Users/Henfling/PycharmProjects/HenflingAuswertung/Test.py
Traceback (most recent call last):
File "C:/Users/Henfling/PycharmProjects/HenflingAuswertung/Test.py", line 1, in <module>
import matplotlib.pyplot as plt
ModuleNotFoundError: No module named 'matplotlib'
Process finished with exit code 1
Python Version ist 3.8 und ich nutze PyCharm Communtiy 1.2.
matplotlib ist doch bei der Installation von Python dabei oder?
MfG
Daniel