Reputation: 69
I have installed npm using sudo apt-get install npm
and npm -v
it shows 1.3.10. After i have updated using npm install -g npm
and downloaded as
[email protected] /usr/local/lib/node_modules/npm
but it shows as 1.3.10. How can i update npm. Thanks in advance.
Upvotes: 1
Views: 856
Reputation: 588
sudo npm install npm@latest
.
This is the easiest way to update npm to the new version.
Upvotes: 1