Jiuming Long
Jiuming Long

Reputation: 1

How do I successfully load matplotlib on Pycharm

I am trying to import matplotlib, here is how it looks.

when i click run, it shows me nothing but the whole codeimport matplotlibturns to grey. It happened every module I load in. I want to know is it normal?

Upvotes: 0

Views: 38

Answers (1)

vlizana
vlizana

Reputation: 3232

Pycharm does this whith the import statements that are not used, so you can keep control of which modules the code is actually using. It will be normal again once you use it in your code.

Upvotes: 1

Related Questions