I am pretty new to Pycharm (community edition), which I am using via Thinlinc client on a remote desktop server. The issue I am having is that I am not able to create interactive plots. On my local computer with Canopy, after importing matplotlib and calling the plot( ... ) command on the console with some variable X inside, the plot window opens.
However, in my remote machine on the Pycharm console, calling plot() does not give errors, but does not open a window (not even when calling .show()). By contrast, plt.savefig() works perfectly. I tried to get the following info:
matplotlib.is_interactive()
Out[8]: True
matplotlib.get_backend()
Out[10]: 'agg'