I would like to generate inline plot instead of plot that popping out in python3.x
. All of the solution I found when browsing around is with IPython
/jupyter notebook
, however, I am running my script using terminal, i.e python3 <script>.py
, and every time I run plt.show()
it always popping a new window of the result.
How can I achieve inline plot in this scenario?
Any help would be appreciated.