When I run gnuplot from within vscode, I get nothing: no error, but no plot either. Running gnuplot from the shell works fine.
This works:
shell> gnuplot
G N U P L O T
Version 5.2 patchlevel 8 last modified 2019-12-01
Copyright (C) 1986-1993, 1998, 2004, 2007-2019
Thomas Williams, Colin Kelley and many others
gnuplot home: http://www.gnuplot.info
faq, bugs, etc: type "help FAQ"
immediate help: type "help" (plot window: hit 'h')
Terminal type is now 'windows'
Options are '0 color solid butt enhanced standalone size 887,435'
Encoding set to 'cp1252'.
gnuplot> plot sin(x)
gnuplot> quit
This doesn’t:
julia> using Gnuplot
julia> @gp "plot sin(x)"
Does anyone have any clue what’s going on?
Julia 1.6.2, Windows 10.