-
-
Notifications
You must be signed in to change notification settings - Fork 372
Description
I am trying to use Plots package in Jupyter notebook and because of the error in plotting (could not load library "libGR.dll", The specified module could not be found.), I tried the following:
ENV["GRDIR"]=""
using Pkg
Pkg.build("GR")
And I get the following error:
Building GR → C:\Users\Pramod\.julia\packages\GR\ZI5OE\deps\build.log
┌ Error: Error building GR:
│ ERROR: LoadError: UndefVarError: installed not defined
│ Stacktrace:
│ [1] top-level scope at C:\Users\Pramod.julia\packages\GR\ZI5OE\deps\build.jl:8
│ [2] include(::String) at .\client.jl:439
│ [3] top-level scope at none:5
│ in expression starting at C:\Users\Pramod.julia\packages\GR\ZI5OE\deps\build.jl:7
└ @ Pkg.Operations D:\buildbot\worker\package_win64\build\usr\share\julia\stdlib\v1.4\Pkg\src\Operations.jl:892
I am getting the above error only when I am using Jupyter notebook and I don't face any issue when I am using Atom IDE for plotting using Plots package. Please help.
Thanks.