当我试图在Julia REPL中制作情节时,这是可能的,但是当我使用Jupyternotebook甚至从Julia文档中制作基本情节
using Plots
x = 1:10; y = rand(10); # These are the plotting data
plot(x, y)
我看到错误:
SystemError: opening file "C:\Users\Kasia\AppData\Local\Temp\jl_rgpMDkxG5u.svg": No such file or directory
我不知道该怎么办。
我尝试删除plot并重新添加它。也在更新plot和GR。我使用的是Windows 10。
jupyter更新解决了这个问题