I am installing julia packages on my windows machine and i am getting errros that go like this →
*.dll is either not designed to run on windows or contains an error. Try installing again using original installation media or contact system admin or software vendor for support. Error status 0xc0e90002.
I got this error earlier as well when i was trying to install older version of julia by an exe installer.
Any idea on what to do??
A few questions:
julia> versioninfo()
- which package(s) do you try to install
- what is the output of
julia> using Pkg; Pkg.status()
And if you share the output you get, please enclose any messages in triple backslashes, like ```
julia> versioninfo()
Julia Version 1.12.6
Commit 15346901f0 (2026-04-09 19:20 UTC)
Build Info:
Official https://julialang.org release
Platform Info:
OS: Windows (x86_64-w64-mingw32)
CPU: 12 × AMD Ryzen 5 5500U with Radeon Graphics
WORD_SIZE: 64
LLVM: libLLVM-18.1.7 (ORCJIT, znver2)
GC: Built with stock GC
Threads: 1 default, 1 interactive, 1 GC (on 12 virtual cores)
(@v1.12) pkg> st
Status `C:\Users\adity\.julia\environments\v1.12\Project.toml`
[336ed68f] CSV v0.10.16
[a93c6f00] DataFrames v1.8.2
[0c46a032] DifferentialEquations v8.0.3
[7073ff75] IJulia v1.34.4
⌅ [682c06a0] JSON v0.21.4
[b964fa9f] LaTeXStrings v1.4.0
⌃ [2b0e0bc5] LanguageServer v4.1.0
[23fbe1c1] Latexify v0.16.11
[f8e5d5a0] PhoXonic v0.3.3
[91a5bcdd] Plots v1.41.6
[295af30f] Revise v3.16.3
[276daf66] SpecialFunctions v2.8.3
[10745b16] Statistics v1.11.1
[2913bbd2] StatsBase v0.34.12
[f3b207a7] StatsPlots v0.15.8
[0c5d862f] Symbolics v7.36.0
[3cd96dde] UnROOT v0.11.10
[37e2e46d] LinearAlgebra v1.12.0
All of this was a fresh install on the machine. All packages were installed together via one command and were installed successfully. Errors started popping up after installation at the time of precompilation.
Here is the ss of one of the popups:
For debugging:
Can you remove the DifferentialEquations package and check if it then works:
using Pkg
Pkg.rm("DifferentialEquations")
This package is very large and likely contains many solvers you do not need.
But first, check if this helps. If yes, we can figure out how to install the solvers you need.