Hello,
I just noticed that adding the OrdinaryDiffEq to Julia fails at the precompilation step. It worked yesterday. But today, I cannot get it to work. It is not an issue of my machine as I have tested this on multiple ones.
Steps to reproduce:
- Delete Julia completely to make sure it is not a problem with my installation.
- Delete the
.juliafolder. - Install Julia via
winget install --name Julia --id 9NJNWW8PVKMN -e -s msstore(I am using Windows.) - Open Julia in terminal via
juliacommand. ]add OrdinaryDiffEq
I get the following output:
✗ OrdinaryDiffEqRosenbrock
✗ OrdinaryDiffEqDefault
✗ OrdinaryDiffEq
Precompiling packages finished.
131 dependencies successfully precompiled in 338 seconds. 34 already precompiled.
3 dependencies had output during precompilation:
┌ LinearSolve
│ Downloading artifact: MKL
└
┌ SciMLBase
│ ┌ Warning: Replacing docs for `SciMLBase.AlgorithmInterpretation :: Union{}` in module `SciMLBase.AlgorithmInterpretation`
│ └ @ Base.Docs docs\Docs.jl:249
└
┌ MKL_jll
│ Downloading artifact: IntelOpenMP
│ Downloading artifact: oneTBB
└
3 dependencies errored.
For a report of the errors see `julia> err`. To retry use `pkg> precompile`
The err() function outputs:
ERROR: MethodError: objects of type Base.Precompilation.PkgPrecompileError are not callable
The object of type `Base.Precompilation.PkgPrecompileError` exists, but no method is defined for this combination of argument types when trying to treat it as a callable object.
Stacktrace:
[1] top-level scope
@ REPL[2]:1
Can anyone confirm this?