Closed
Description
plt = pyimport("matplotlib.pyplot")
works well and it's easy to create plots.
However, with plt.show()
the figure window has to be closed manually in order to use the REPL again. Instead with plt.show(;block=false)
the figure window is blank and Julia hangs. (Julia 1.7.2, Win 10 64).
Example:
plt = pyimport("matplotlib.pyplot")
fig = plt.figure()
plt.plot(1:10)
plt.show()
Metadata
Metadata
Assignees
Labels
No labels