I’m using jupyter lab and have trouble to get a standalone window (not inline) from Plots.jl and GLMakie. I tried
using Plots
scatter(rand(5), rand(5), legend=false)
gui()
and also
plt = plot()
scatter!(plt, rand(5), rand(5), legend=false)
gui(plt)
both of which do nothing when executed in a jupyter lab cell. Is this expected behaviour? The documentation for me suggests it should work?
This is in julia 1.11 with an environment where I only installed Plots.jl. It works fine in repl. I also played around with GLMakie, but I cannot get a standalone window there either…