本文介绍了我收到一条消息“正在使用图".在朱莉娅,我不知道如何解决它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是Julia的新手,添加了Plots程序包后,我尝试使用Plots,但出现了以下错误消息:

I am a new in Julia and after adding the Plots package I tried to use Plots and I got this Error message:

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 

有人可以帮助我解决问题吗

can someone help me to resolve the problem

推荐答案

尝试安装FFMPEG,并重新构建它和Plots

Try to install FFMPEG, rebuild this and Plots as well

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

很有可能会奏效.

这篇关于我收到一条消息“正在使用图".在朱莉娅,我不知道如何解决它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 15:48