I am interested in using DynamicGrids.jl but ran into the following precompilation errors during installation:
? ConstructionBaseExtras
✗ DimensionalData
? ModelParameters
✗ DynamicGrids
Precompiling packages finished.
0 dependencies successfully precompiled in 9 seconds. 111 already precompiled.
2 dependencies failed but may be precompilable after restarting julia
2 dependencies had output during precompilation:
┌ ModelParameters
│ WARNING: Method definition constructorof(Type{var"#s1"} where var"#s1"<:(IntervalSets.Interval{L, R, T} where T)) where {L, R} in module ConstructionBaseIntervalSetsExt at C:\Users\gannd.julia\packages\ConstructionBase\3a7dg\ext\ConstructionBaseIntervalSetsExt.jl:6 overwritten in module ConstructionBaseExtras at C:\Users\gannd.julia\packages\ConstructionBaseExtras\cy4E1\src\intervalsets.jl:3.
│ ERROR: Method overwriting is not permitted during Module precompilation. Use __precompile__(false) to opt-out of precompilation.
└
┌ ConstructionBaseExtras
│ WARNING: Method definition constructorof(Type{var"#s1"} where var"#s1"<:(IntervalSets.Interval{L, R, T} where T)) where {L, R} in module ConstructionBaseIntervalSetsExt at C:\Users\gannd.julia\packages\ConstructionBase\3a7dg\ext\ConstructionBaseIntervalSetsExt.jl:6 overwritten in module ConstructionBaseExtras at C:\Users\gannd.julia\packages\ConstructionBaseExtras\cy4E1\src\intervalsets.jl:3.
│ ERROR: Method overwriting is not permitted during Module precompilation. Use __precompile__(false) to opt-out of precompilation.
└
2 dependencies errored.
For a report of the errors see julia> err. To retry use pkg> precompile
The specific error is:
julia> err’
ERROR: MethodError: no method matching adjoint(::Base.Precompilation.PkgPrecompileError)
The function adjoint exists, but no method is defined for this combination of argument types.
Closest candidates are:
adjoint(::Missing)
@ Base missing.jl:101
adjoint(::LinearAlgebra.Givens)
@ LinearAlgebra C:\Users\gannd\AppData\Local\Programs\Julia-1.12.5\share\julia\stdlib\v1.12\LinearAlgebra\src\givens.jl:60
adjoint(::LinearAlgebra.AdjointFactorization)
@ LinearAlgebra C:\Users\gannd\AppData\Local\Programs\Julia-1.12.5\share\julia\stdlib\v1.12\LinearAlgebra\src\factorization.jl:61
…
Stacktrace:
[1] top-level scope
@ REPL[10]:1
My Environment:
julia> versioninfo()
Julia Version 1.12.5
Commit 5fe89b8ddc (2026-02-09 16:05 UTC)
Build Info:
Official https://julialang.org release
Platform Info:
OS: Windows (x86_64-w64-mingw32)
CPU: 32 × 13th Gen Intel(R) Core™ i9-13950HX
WORD_SIZE: 64
LLVM: libLLVM-18.1.7 (ORCJIT, alderlake)
GC: Built with stock GC
Threads: 1 default, 1 interactive, 1 GC (on 32 virtual cores)
Thanks for considering helping out – very new to Julia and any pointers are appreciated.