Error when using DifferentialEquations

I have read some old similar questions, but could not find a suitable solution. When I enter using DifferentialEquations this is what I get. Someone can tell me what it is going on, please? Thank you!

Failed to precompile DifferentialEquations [0c46a032-eb83-5123-abaf-570d42b7fbaa] to C:\Users\18143\.julia\compiled\v1.6\DifferentialEquations\jl_A601.tmp.

Stacktrace:
 [1] error(s::String)
   @ Base .\error.jl:33
 [2] compilecache(pkg::Base.PkgId, path::String, internal_stderr::IJulia.IJuliaStdio{Base.PipeEndpoint}, internal_stdout::IJulia.IJuliaStdio{Base.PipeEndpoint}, ignore_loaded_modules::Bool)
   @ Base .\loading.jl:1385
 [3] compilecache(pkg::Base.PkgId, path::String)
   @ Base .\loading.jl:1329
 [4] _require(pkg::Base.PkgId)
   @ Base .\loading.jl:1043
 [5] require(uuidkey::Base.PkgId)
   @ Base .\loading.jl:936
 [6] require(into::Module, mod::Symbol)
   @ Base .\loading.jl:923
 [7] eval
   @ .\boot.jl:360 [inlined]
 [8] include_string(mapexpr::typeof(REPL.softscope), mod::Module, code::String, filename::String)
   @ Base .\loading.jl:1116

My first guess would be there are incompatible version requirements of different packages (assuming it is not a simple installation problem). When I ask for

Pkg.update()

I currently get an answer like

  57 dependencies successfully precompiled in 210 seconds (379 already precompiled, 3 skipped during auto due to previous errors)
  6 dependencies errored. To see a full report either run `import Pkg; Pkg.precompile()` or load the packages

I don’t know if there is a less intrusive way than update() to get this status information, though.

Is that Julia v1.6? Can you share the whole error?