Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
I installed Matplotlib and tried a simple demo, but I got a warning message and no plot showed up: >>> import matplotlib.pyplot as plt >>> plt.plot([1,2,3],[4,5,6]) [<matplo...
#1: Initial revision
Why won't Matplotlib show me a plot?
I installed Matplotlib and tried a simple demo, but I got a warning message and no plot showed up: ``` >>> import matplotlib.pyplot as plt >>> plt.plot([1,2,3],[4,5,6]) [<matplotlib.lines.Line2D object at ...>] >>> plt.show() <stdin>:1: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. ``` What does this mean, and how can I show the plot?