3

我是 Julia 的新手,添加 Plots 包后,我尝试使用 Plots,但收到以下错误消息:

julia> using Plots
[ Info: Precompiling Plots [91a5bcdd-55d7-5caf-9e0b-520d859cae80]
ERROR: LoadError: InitError: could not load library "C:\Users\niri.julia\artifacts\7350a6401f1c0d38cc3518193083bc4f83adfe99\bin\avcodec-58.dll"
The specified module could not be found.
Stacktrace:

ERROR: LoadError: Failed to precompile FFMPEG [c87230d0-a227-11e9-1b43-d7ebe4e7570a] to C:\Users\niri.julia\compiled\v1.5\FFMPEG\TGvga_Ik59J.ji.

ERROR: Failed to precompile Plots [91a5bcdd-55d7-5caf-9e0b-520d859cae80] to 

有人可以帮我解决问题吗

4

1 回答 1

2

尝试安装FFMPEG,重建它,Plots以及

using Pkg
pkg"add FFMPEG"
pkg"build FFMPEG"
pkg"build Plots"

它很有可能会奏效。

于 2020-09-07T21:33:18.797 回答