Installing the "plot" library works fine.
using Pkg
Pkg.update()
Pkg.add("FFMPEG")
Pkg.add("Plots")
Running the plot library gives errors:
using Plots
x = range(0, 10, length=100)
y1 = sin.(x)
y2 = cos.(x)
p=plot(x, [y1,y2],title="Tutorial",xlabel="x",ylabel="y")
savefig(p,"p.png")
display(p)...