-
Hi, I've been trying to install @rainbow-me/rainbowkit using the following command
however installation is stucked forever at
Also Ctrl + C does not work and I had to kill the npm install process. I'm using "next": "^14.2.3" and node v20.13.0 through nvm Can you help me? please I really need my project working ASAP. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@leonelos-001 I've been running into this problem too. I believe its related to the recent react A few ways i bypassed this problem while waiting for the other packages to catch up in versioning:
Both methods worked for me, but I'd recommend (1) to remain compliant with peer dependencies :) |
Beta Was this translation helpful? Give feedback.
-
@leonelos-001 This issue should be resolved now. Like @chloe-tan said, there are some peer dependencies conflicts during the time of installation. The problem occurs with MetaMask SDK within the wagmi library, which is has some react peer dependencies issues. |
Beta Was this translation helpful? Give feedback.
@leonelos-001
I've been running into this problem too. I believe its related to the recent react
18.3.1
upgrade in the rainbowkit deps, causing certain peer dependencies down the tree to break.A few ways i bypassed this problem while waiting for the other packages to catch up in versioning:
18.2.0
(meaning not^18.2.0
or18.3.1
etc, but the fixed18.2.0
version), ORnpm install --legacy-peer-deps
instead to ignore peer dependency errorsBoth methods worked for me, but I'd recommend (1) to remain compliant with peer dependencies :)