Skip to content

[Installation] Following the documented setup guide fails due to dependency incompatibilities #23

@fledit-sh

Description

@fledit-sh

Reproduction

mkdir kitesims
cd kitesims
julia --project="."
using Pkg
pkg"add KiteSimulators"          =# fails here
pkg"add ControlPlots"
pkg"add Timers" 

using KiteSimulators
init_project()
exit()
  • Also installed the VC_redist.x64.exe from the guide
  • Bug reproduced in fresh julia installation and with a new project

Error

✗ NonlinearSolve
✗ NonlinearSolve → NonlinearSolveNLsolveExt
✗ ModelingToolkit
✗ OrdinaryDiffEqNonlinearSolve
✗ ModelingToolkit → MTKChainRulesCoreExt
✗ OrdinaryDiffEqSDIRK
✗ OrdinaryDiffEqBDF
✗ KiteModels
✗ KiteSimulators
julia> err
PkgPrecompileError: The following 3 direct dependencies failed to precompile:

NonlinearSolve

Failed to precompile NonlinearSolve [8913a72c-1f9b-4ce2-8d82-65094dcecaec] to "C:\\Users\\x\\.julia\\compiled\\v1.11\\NonlinearSolve\\jl_8294.tmp".
WARNING: could not import DiffEqBase.AbstractNonlinearTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbstractSafeBestNonlinearTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsNormTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsSafeBestTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsSafeTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.NormTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelNormTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelSafeBestTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelSafeTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.SimpleNonlinearSolveTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.SteadyStateDiffEqTerminationMode into NonlinearSolve
ERROR: LoadError: UndefVarError: `AbstractNonlinearTerminationMode` not defined in `NonlinearSolve`
Stacktrace:
 [1] top-level scope
   @ C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\internal\termination.jl:11
 [2] include(mod::Module, _path::String)
   @ Base .\Base.jl:557
 [3] include(x::String)
   @ NonlinearSolve C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\NonlinearSolve.jl:1
 [4] top-level scope
   @ C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\NonlinearSolve.jl:83
 [5] include
   @ .\Base.jl:557 [inlined]
 [6] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::Nothing)
   @ Base .\loading.jl:2881
 [7] top-level scope
   @ stdin:6
in expression starting at C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\internal\termination.jl:11
in expression starting at C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\NonlinearSolve.jl:1
in expression starting at stdin:6
NonlinearSolveNLsolveExt

Failed to precompile NonlinearSolveNLsolveExt [ae262b1c-8c8a-50b1-9ef3-b8fcfb893e74] to "C:\\Users\\x\\.julia\\compiled\\v1.11\\NonlinearSolveNLsolveExt\\jl_943B.tmp".
WARNING: could not import DiffEqBase.AbstractNonlinearTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbstractSafeBestNonlinearTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsNormTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsSafeBestTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsSafeTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.NormTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelNormTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelSafeBestTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelSafeTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.SimpleNonlinearSolveTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.SteadyStateDiffEqTerminationMode into NonlinearSolve
ERROR: LoadError: UndefVarError: `AbstractNonlinearTerminationMode` not defined in `NonlinearSolve`
Stacktrace:
 [1] top-level scope
   @ C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\internal\termination.jl:11
 [2] include(mod::Module, _path::String)
   @ Base .\Base.jl:557
 [3] include(x::String)
   @ NonlinearSolve C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\NonlinearSolve.jl:1
 [4] top-level scope
   @ C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\NonlinearSolve.jl:83
 [5] include
   @ .\Base.jl:557 [inlined]
 [6] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::String)
   @ Base .\loading.jl:2881
 [7] top-level scope
   @ stdin:6
in expression starting at C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\internal\termination.jl:11
in expression starting at C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\NonlinearSolve.jl:1
in expression starting at stdin:6
ERROR: LoadError: Failed to precompile NonlinearSolve [8913a72c-1f9b-4ce2-8d82-65094dcecaec] to "C:\\Users\\x\\.julia\\compiled\\v1.11\\NonlinearSolve\\jl_94A8.tmp".
Stacktrace:
  [1] error(s::String)
    @ Base .\error.jl:35
  [2] compilecache(pkg::Base.PkgId, path::String, internal_stderr::IO, internal_stdout::IO, keep_loaded_modules::Bool; flags::Cmd, cacheflags::Base.CacheFlags, reasons::Dict{String, Int64}, loadable_exts::Nothing)
    @ Base .\loading.jl:3174
  [3] (::Base.var"#1110#1111"{Base.PkgId})()
    @ Base .\loading.jl:2579
  [4] mkpidlock(f::Base.var"#1110#1111"{Base.PkgId}, at::String, pid::Int32; kwopts::@Kwargs{stale_age::Int64, wait::Bool})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:95
  [5] #mkpidlock#6
    @ C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:90 [inlined]
  [6] trymkpidlock(::Function, ::Vararg{Any}; kwargs::@Kwargs{stale_age::Int64})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:116
  [7] #invokelatest#2
    @ .\essentials.jl:1057 [inlined]
  [8] invokelatest
    @ .\essentials.jl:1052 [inlined]
  [9] maybe_cachefile_lock(f::Base.var"#1110#1111"{Base.PkgId}, pkg::Base.PkgId, srcpath::String; stale_age::Int64)
    @ Base .\loading.jl:3698
 [10] maybe_cachefile_lock
    @ .\loading.jl:3695 [inlined]
 [11] _require(pkg::Base.PkgId, env::String)
    @ Base .\loading.jl:2565
 [12] __require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2388
 [13] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [14] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [15] _require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2375
 [16] macro expansion
    @ .\loading.jl:2314 [inlined]
 [17] macro expansion
    @ .\lock.jl:273 [inlined]
 [18] __require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2271
 [19] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [20] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [21] require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2260
 [22] include
    @ .\Base.jl:557 [inlined]
 [23] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::Nothing)
    @ Base .\loading.jl:2881
 [24] top-level scope
    @ stdin:6
in expression starting at C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\ext\NonlinearSolveNLsolveExt.jl:1
in expression starting at stdin:6

KiteSimulators

Failed to precompile KiteSimulators [a262fb0b-5671-4fb4-9d61-972db9a18944] to "C:\\Users\\x\\.julia\\compiled\\v1.11\\KiteSimulators\\jl_4DAD.tmp".
WARNING: could not import DiffEqBase.AbstractNonlinearTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbstractSafeBestNonlinearTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsNormTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsSafeBestTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsSafeTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.AbsTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.NormTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelNormTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelSafeBestTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelSafeTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.RelTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.SimpleNonlinearSolveTerminationMode into NonlinearSolve
WARNING: could not import DiffEqBase.SteadyStateDiffEqTerminationMode into NonlinearSolve
ERROR: LoadError: UndefVarError: `AbstractNonlinearTerminationMode` not defined in `NonlinearSolve`
Stacktrace:
 [1] top-level scope
   @ C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\internal\termination.jl:11
 [2] include(mod::Module, _path::String)
   @ Base .\Base.jl:557
 [3] include(x::String)
   @ NonlinearSolve C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\NonlinearSolve.jl:1
 [4] top-level scope
   @ C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\NonlinearSolve.jl:83
 [5] include
   @ .\Base.jl:557 [inlined]
 [6] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::String)
   @ Base .\loading.jl:2881
 [7] top-level scope
   @ stdin:6
in expression starting at C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\internal\termination.jl:11
in expression starting at C:\Users\x\.julia\packages\NonlinearSolve\sBl1H\src\NonlinearSolve.jl:1
in expression starting at stdin:6
ERROR: LoadError: Failed to precompile NonlinearSolve [8913a72c-1f9b-4ce2-8d82-65094dcecaec] to "C:\\Users\\x\\.julia\\compiled\\v1.11\\NonlinearSolve\\jl_69CB.tmp".
Stacktrace:
  [1] error(s::String)
    @ Base .\error.jl:35
  [2] compilecache(pkg::Base.PkgId, path::String, internal_stderr::IO, internal_stdout::IO, keep_loaded_modules::Bool; flags::Cmd, cacheflags::Base.CacheFlags, reasons::Dict{String, Int64}, loadable_exts::Nothing)
    @ Base .\loading.jl:3174
  [3] (::Base.var"#1110#1111"{Base.PkgId})()
    @ Base .\loading.jl:2579
  [4] mkpidlock(f::Base.var"#1110#1111"{Base.PkgId}, at::String, pid::Int32; kwopts::@Kwargs{stale_age::Int64, wait::Bool})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:95
  [5] #mkpidlock#6
    @ C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:90 [inlined]
  [6] trymkpidlock(::Function, ::Vararg{Any}; kwargs::@Kwargs{stale_age::Int64})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:116
  [7] #invokelatest#2
    @ .\essentials.jl:1057 [inlined]
  [8] invokelatest
    @ .\essentials.jl:1052 [inlined]
  [9] maybe_cachefile_lock(f::Base.var"#1110#1111"{Base.PkgId}, pkg::Base.PkgId, srcpath::String; stale_age::Int64)
    @ Base .\loading.jl:3698
 [10] maybe_cachefile_lock
    @ .\loading.jl:3695 [inlined]
 [11] _require(pkg::Base.PkgId, env::String)
    @ Base .\loading.jl:2565
 [12] __require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2388
 [13] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [14] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [15] _require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2375
 [16] macro expansion
    @ .\loading.jl:2314 [inlined]
 [17] macro expansion
    @ .\lock.jl:273 [inlined]
 [18] __require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2271
 [19] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [20] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [21] require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2260
 [22] include
    @ .\Base.jl:557 [inlined]
 [23] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::String)
    @ Base .\loading.jl:2881
 [24] top-level scope
    @ stdin:6
in expression starting at C:\Users\x\.julia\packages\OrdinaryDiffEqNonlinearSolve\BNspC\src\OrdinaryDiffEqNonlinearSolve.jl:1
in expression starting at stdin:6
ERROR: LoadError: Failed to precompile OrdinaryDiffEqNonlinearSolve [127b3ac7-2247-4354-8eb6-78cf4e7c58e8] to "C:\\Users\\x\\.julia\\compiled\\v1.11\\OrdinaryDiffEqNonlinearSolve\\jl_6595.tmp".
Stacktrace:
  [1] error(s::String)
    @ Base .\error.jl:35
  [2] compilecache(pkg::Base.PkgId, path::String, internal_stderr::IO, internal_stdout::IO, keep_loaded_modules::Bool; flags::Cmd, cacheflags::Base.CacheFlags, reasons::Dict{String, Int64}, loadable_exts::Nothing)
    @ Base .\loading.jl:3174
  [3] (::Base.var"#1110#1111"{Base.PkgId})()
    @ Base .\loading.jl:2579
  [4] mkpidlock(f::Base.var"#1110#1111"{Base.PkgId}, at::String, pid::Int32; kwopts::@Kwargs{stale_age::Int64, wait::Bool})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:95
  [5] #mkpidlock#6
    @ C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:90 [inlined]
  [6] trymkpidlock(::Function, ::Vararg{Any}; kwargs::@Kwargs{stale_age::Int64})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:116
  [7] #invokelatest#2
    @ .\essentials.jl:1057 [inlined]
  [8] invokelatest
    @ .\essentials.jl:1052 [inlined]
  [9] maybe_cachefile_lock(f::Base.var"#1110#1111"{Base.PkgId}, pkg::Base.PkgId, srcpath::String; stale_age::Int64)
    @ Base .\loading.jl:3698
 [10] maybe_cachefile_lock
    @ .\loading.jl:3695 [inlined]
 [11] _require(pkg::Base.PkgId, env::String)
    @ Base .\loading.jl:2565
 [12] __require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2388
 [13] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [14] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [15] _require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2375
 [16] macro expansion
    @ .\loading.jl:2314 [inlined]
 [17] macro expansion
    @ .\lock.jl:273 [inlined]
 [18] __require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2271
 [19] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [20] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [21] require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2260
 [22] include
    @ .\Base.jl:557 [inlined]
 [23] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::String)
    @ Base .\loading.jl:2881
 [24] top-level scope
    @ stdin:6
in expression starting at C:\Users\x\.julia\packages\OrdinaryDiffEqSDIRK\YAA9M\src\OrdinaryDiffEqSDIRK.jl:1
in expression starting at stdin:6
ERROR: LoadError: Failed to precompile OrdinaryDiffEqSDIRK [2d112036-d095-4a1e-ab9a-08536f3ecdbf] to "C:\\Users\\x\\.julia\\compiled\\v1.11\\OrdinaryDiffEqSDIRK\\jl_5D29.tmp".
Stacktrace:
  [1] error(s::String)
    @ Base .\error.jl:35
  [2] compilecache(pkg::Base.PkgId, path::String, internal_stderr::IO, internal_stdout::IO, keep_loaded_modules::Bool; flags::Cmd, cacheflags::Base.CacheFlags, reasons::Dict{String, Int64}, loadable_exts::Nothing)
    @ Base .\loading.jl:3174
  [3] (::Base.var"#1110#1111"{Base.PkgId})()
    @ Base .\loading.jl:2579
  [4] mkpidlock(f::Base.var"#1110#1111"{Base.PkgId}, at::String, pid::Int32; kwopts::@Kwargs{stale_age::Int64, wait::Bool})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:95
  [5] #mkpidlock#6
    @ C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:90 [inlined]
  [6] trymkpidlock(::Function, ::Vararg{Any}; kwargs::@Kwargs{stale_age::Int64})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:116
  [7] #invokelatest#2
    @ .\essentials.jl:1057 [inlined]
  [8] invokelatest
    @ .\essentials.jl:1052 [inlined]
  [9] maybe_cachefile_lock(f::Base.var"#1110#1111"{Base.PkgId}, pkg::Base.PkgId, srcpath::String; stale_age::Int64)
    @ Base .\loading.jl:3698
 [10] maybe_cachefile_lock
    @ .\loading.jl:3695 [inlined]
 [11] _require(pkg::Base.PkgId, env::String)
    @ Base .\loading.jl:2565
 [12] __require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2388
 [13] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [14] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [15] _require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2375
 [16] macro expansion
    @ .\loading.jl:2314 [inlined]
 [17] macro expansion
    @ .\lock.jl:273 [inlined]
 [18] __require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2271
 [19] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [20] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [21] require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2260
 [22] include
    @ .\Base.jl:557 [inlined]
 [23] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::String)
    @ Base .\loading.jl:2881
 [24] top-level scope
    @ stdin:6
in expression starting at C:\Users\x\.julia\packages\OrdinaryDiffEqBDF\G7YWG\src\OrdinaryDiffEqBDF.jl:1
in expression starting at stdin:6
ERROR: LoadError: Failed to precompile OrdinaryDiffEqBDF [6ad6398a-0878-4a85-9266-38940aa047c8] to "C:\\Users\\x\\.julia\\compiled\\v1.11\\OrdinaryDiffEqBDF\\jl_5A5A.tmp".
Stacktrace:
  [1] error(s::String)
    @ Base .\error.jl:35
  [2] compilecache(pkg::Base.PkgId, path::String, internal_stderr::IO, internal_stdout::IO, keep_loaded_modules::Bool; flags::Cmd, cacheflags::Base.CacheFlags, reasons::Dict{String, Int64}, loadable_exts::Nothing)
    @ Base .\loading.jl:3174
  [3] (::Base.var"#1110#1111"{Base.PkgId})()
    @ Base .\loading.jl:2579
  [4] mkpidlock(f::Base.var"#1110#1111"{Base.PkgId}, at::String, pid::Int32; kwopts::@Kwargs{stale_age::Int64, wait::Bool})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:95
  [5] #mkpidlock#6
    @ C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:90 [inlined]
  [6] trymkpidlock(::Function, ::Vararg{Any}; kwargs::@Kwargs{stale_age::Int64})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:116
  [7] #invokelatest#2
    @ .\essentials.jl:1057 [inlined]
  [8] invokelatest
    @ .\essentials.jl:1052 [inlined]
  [9] maybe_cachefile_lock(f::Base.var"#1110#1111"{Base.PkgId}, pkg::Base.PkgId, srcpath::String; stale_age::Int64)
    @ Base .\loading.jl:3698
 [10] maybe_cachefile_lock
    @ .\loading.jl:3695 [inlined]
 [11] _require(pkg::Base.PkgId, env::String)
    @ Base .\loading.jl:2565
 [12] __require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2388
 [13] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [14] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [15] _require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2375
 [16] macro expansion
    @ .\loading.jl:2314 [inlined]
 [17] macro expansion
    @ .\lock.jl:273 [inlined]
 [18] __require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2271
 [19] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [20] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [21] require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2260
 [22] include
    @ .\Base.jl:557 [inlined]
 [23] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::String)
    @ Base .\loading.jl:2881
 [24] top-level scope
    @ stdin:6
in expression starting at C:\Users\x\.julia\packages\KiteModels\19l4g\src\KiteModels.jl:34
in expression starting at stdin:6
ERROR: LoadError: Failed to precompile KiteModels [b94af626-7959-4878-9336-2adc27959007] to "C:\\Users\\x\\.julia\\compiled\\v1.11\\KiteModels\\jl_5568.tmp".
Stacktrace:
  [1] error(s::String)
    @ Base .\error.jl:35
  [2] compilecache(pkg::Base.PkgId, path::String, internal_stderr::IO, internal_stdout::IO, keep_loaded_modules::Bool; flags::Cmd, cacheflags::Base.CacheFlags, reasons::Dict{String, Int64}, loadable_exts::Nothing)
    @ Base .\loading.jl:3174
  [3] (::Base.var"#1110#1111"{Base.PkgId})()
    @ Base .\loading.jl:2579
  [4] mkpidlock(f::Base.var"#1110#1111"{Base.PkgId}, at::String, pid::Int32; kwopts::@Kwargs{stale_age::Int64, wait::Bool})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:95
  [5] #mkpidlock#6
    @ C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:90 [inlined]
  [6] trymkpidlock(::Function, ::Vararg{Any}; kwargs::@Kwargs{stale_age::Int64})
    @ FileWatching.Pidfile C:\Users\x\.julia\juliaup\julia-1.11.5+0.x64.w64.mingw32\share\julia\stdlib\v1.11\FileWatching\src\pidfile.jl:116
  [7] #invokelatest#2
    @ .\essentials.jl:1057 [inlined]
  [8] invokelatest
    @ .\essentials.jl:1052 [inlined]
  [9] maybe_cachefile_lock(f::Base.var"#1110#1111"{Base.PkgId}, pkg::Base.PkgId, srcpath::String; stale_age::Int64)
    @ Base .\loading.jl:3698
 [10] maybe_cachefile_lock
    @ .\loading.jl:3695 [inlined]
 [11] _require(pkg::Base.PkgId, env::String)
    @ Base .\loading.jl:2565
 [12] __require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2388
 [13] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [14] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [15] _require_prelocked(uuidkey::Base.PkgId, env::String)
    @ Base .\loading.jl:2375
 [16] macro expansion
    @ .\loading.jl:2314 [inlined]
 [17] macro expansion
    @ .\lock.jl:273 [inlined]
 [18] __require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2271
 [19] #invoke_in_world#3
    @ .\essentials.jl:1089 [inlined]
 [20] invoke_in_world
    @ .\essentials.jl:1086 [inlined]
 [21] require(into::Module, mod::Symbol)
    @ Base .\loading.jl:2260
 [22] include
    @ .\Base.jl:557 [inlined]
 [23] include_package_for_output(pkg::Base.PkgId, input::String, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::Nothing)
    @ Base .\loading.jl:2881
 [24] top-level scope
    @ stdin:6
in expression starting at C:\Users\x\.julia\packages\KiteSimulators\oEoSz\src\KiteSimulators.jl:1
in expression starting at stdin:6

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions