You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had some trouble when I tried to use DifferentialEquations package due to EllipsisNotation.
I tried to do Pkg.rm("EllipsisNotation") and Pkg.add("EllipsisNotation") which would install v1.1.2 and not the latest accessible via github which is 1.1.0.
Then when I did using EllipsisNotation, it would return the following error message:
julia> using EllipsisNotation
[ Info: Precompiling EllipsisNotation [da5c29d0-fa7d-589e-88eb-ea29b0a81949]
ERROR: LoadError: UndefVarError: is_splat_index not defined
Stacktrace:
[1] getproperty(::Module, ::Symbol) at .\Base.jl:26
[2] top-level scope at C:\Users\Jerem\.julia\packages\EllipsisNotation\qFNQT\src\EllipsisNotation.jl:58
[3] include(::Function, ::Module, ::String) at .\Base.jl:380
[4] include(::Module, ::String) at .\Base.jl:368
[5] top-level scope at none:2
[6] eval at .\boot.jl:347 [inlined]
[7] eval(::Expr) at .\client.jl:467
[8] top-level scope at .\none:3
in expression starting at C:\Users\Jerem\.julia\packages\EllipsisNotation\qFNQT\src\EllipsisNotation.jl:58
ERROR: Failed to precompile EllipsisNotation [da5c29d0-fa7d-589e-88eb-ea29b0a81949] to C:\Users\Jerem\.julia\compiled\v1.5\EllipsisNotation\8VWla_Zflgo.ji.
Stacktrace:
[1] error(::String) at .\error.jl:33
[2] compilecache(::Base.PkgId, ::String) at .\loading.jl:1305
[3] _require(::Base.PkgId) at .\loading.jl:1030
[4] require(::Base.PkgId) at .\loading.jl:928
[5] require(::Module, ::Symbol) at .\loading.jl:923
I solved the problem with: Pkg.rm("EllipsisNotation") Pkg.add(Pkg.PackageSpec(;name="EllipsisNotation", version="1.1.0"))
And then the package built perfectly and I can use it (thus DifferentialEquations also works perfectly).
The issue is solved, but could of interest for some users?
The text was updated successfully, but these errors were encountered:
I had some trouble when I tried to use DifferentialEquations package due to EllipsisNotation.
I tried to do
Pkg.rm("EllipsisNotation")
andPkg.add("EllipsisNotation")
which would install v1.1.2 and not the latest accessible via github which is 1.1.0.Then when I did using EllipsisNotation, it would return the following error message:
I solved the problem with:
Pkg.rm("EllipsisNotation")
Pkg.add(Pkg.PackageSpec(;name="EllipsisNotation", version="1.1.0"))
And then the package built perfectly and I can use it (thus DifferentialEquations also works perfectly).
The issue is solved, but could of interest for some users?
The text was updated successfully, but these errors were encountered: