Failed to precompile ORCA

No, rewrite it like this:

using Plots
plotly()         # without the js at the end, my bad. This changes your backend. All the backends are implemented in the Plots package
x=[1:10]
y=rand(10)
z=rand(10)
plot(x,y,z)
1 Like