Yep, had to go the manual route once too.
Here’s what I did to install npm on Windows manually after using nvm:
-
Go to
https://github.com/npm/cli/releases
-
Download the
.zip
for your preferred npm version. -
Extract it somewhere (I did
C:\tools\npm
). -
Add that folder to your system PATH.
Then run:
bash
Copy
Edit
npm -v
It should now work.
Just make sure your Node version from nvm is still active when using it.
Not the prettiest solution, but it works well if you’re stuck.