unable to install dependencies through npm install #3785
Answered
by
fturmel
lakshmimaddipati
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
fturmel
Apr 25, 2024
Replies: 1 comment 2 replies
-
You mean the dev dependencies to contribute, right? I think the problem is that the lock file right now is on Bun 1.0.30, but they only shipped Windows compat recently with v1.1 https://bun.sh/blog/bun-v1.1#windows-support. The pre-built binaries in 1.0.x were only for macOS (darwin) and linux. Try running |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
fturmel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You mean the dev dependencies to contribute, right?
I think the problem is that the lock file right now is on Bun 1.0.30, but they only shipped Windows compat recently with v1.1 https://bun.sh/blog/bun-v1.1#windows-support. The pre-built binaries in 1.0.x were only for macOS (darwin) and linux.
Try running
npm update
instead ofnpm install
, or delete the package lock file beforenpm install
.