ampi89
ampi89

Reputation: 69

npm -v shows older version after updated too

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

Answers (1)

Ketha Kavya
Ketha Kavya

Reputation: 588

sudo npm install npm@latest. This is the easiest way to update npm to the new version.

Upvotes: 1

Related Questions