Pycharm does not show plot from the following code:
import pandas as pd
import numpy as np
import matplotlib as plt
ts = pd.Series(np.random.randn(1000), in
None of the above worked for me but the following did:
Disable the checkbox (Show plots in tool window) in pycharm settings > Tools > Python Scientific.
I received the error No PyQt5 module found. Went ahead with the installation of PyQt5 using :
sudo apt-get install python3-pyqt5
Beware that for some only first step is enough and works.