Hi user22418091! Welcome to StackOverflow! Please include any code you have thanks :-)
– MarkAug 20 '23 at 10:35
I think its not the code mistake because I tried in julia and it runs well. but in vscode, it finish plot but give none plot
– user22418091Aug 20 '23 at 14:07
1
that's not the point. Please share your code. You could be using a particular library or a version of a library which is bad, or a function which is bad with something else in vscode. without seeing your code it's impossible to say
– MarkAug 20 '23 at 14:08
using Plots
A=[1,7,9,2]
B=[1,4,4,7]
plot(A,B)
just for this small snippet it always give nothing, I've tried julia in 1.9 and 1.6 and both doesnt work
– user22418091Aug 20 '23 at 14:17
is there anything else i can provide to make it clear, sy i'm freshman in julia and vscode, its hard for me to get the point
– user22418091Aug 20 '23 at 14:20
Provide your code, the Julia packages+environment you're using, and your VSCode setup if possible
– BallpointBenAug 22 '23 at 04:19
Occasionally I have seen this. Sometimes changing the backend helps. Also sometimes, if you use display() as in plt = plot(A,B); display(plt), it may overcome the issue with VS code noticing a plot is generated.
– BillAug 26 '23 at 19:37
If you haven't seen it already: Here is a nice answer to a similar [question](https://stackoverflow.com/questions/73599180/plot-not-showing-in-julia). In short: calling `display(p)` after the last `plot!`call might help.
– rosa b.Aug 27 '23 at 14:21