0

I've just finished an online course about python for Data Science. I wanted to code something by my own in Pycharm Edu. I had done this before and everything was working. I downloaded "numpy" and "matplotlib" via Pycharm and console in Linux Mint. When I import numpy and import matplotlib ( and write nothing else ) my program is running properly, but when I write "import matplotlib.pyplot as plt" it is not working.enter image description here Screen: https://snag.gy/CPx9WG.jpg

Mikey566
  • 45
  • 5

1 Answers1

0

You have to install tkinter

apt-get install python-tk

Docs found here: Tkinter

tda
  • 2,045
  • 1
  • 17
  • 42