I am new to python and just installed pyCharm and tried to run a test example given to the following question: How to update a plot in matplotlib?
This example updates the plot to animate a moving sine signal. Instead of replotting, it updates the data of the plot object.
It works in command line but the figure does not show up when run in PyCharm. Adding plt.show(block=True)
at the end of the script brings up the figure but this time it wont update.
Any ideas?