I am running Julia over ssh in VSCode. What plotting options are there? I don’t have X11.
VSCode can display images from the remote file system, so in principle it should be possible to plot to a file, and then show it in VSCode. Is there any convenient workflow around that?
Just using Plots; plot(1:3, rand(3)) opens a plot in VSCode (over ssh) for me. I’d also recommend setting ENV["GKSwstype"]="nul" to get rid of the error message about not having an X server on the remote.