This example is taken from GR.jl/examples/anim.ipynb.
using GR
GR.inline("mov")
x = collect(0:0.01:2*pi)
for i = 1:100
GR.plot(x, sin.(x .+ i / 10.0), size=(400,300))
end
s = GR.show()
ArgumentError: Package GR [28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71] is required but does not seem to be installed:
Run Pkg.instantiate()
to install all recorded dependencies.