我怎样才能更新npm本身?

时间:2021-10-25 20:32:59

I am trying to update npm itself:

我想尝试更新npm本身:

npm uninstall npm -g

Responds with:

回复:

unbuild npm@2.12.1

But when I go :

但是当我走的时候:

npm --version

I get 1.4.28? How to upgrade the npm itself

我得到1.4.28?如何升级npm本身

1 个解决方案

#1


6  

You can try this :

你可以试试这个:

cd /usr/lib/node_modules

cd / usr / lib / node_modules

npm install npm@latest

npm install npm @ latest

Edit : npm install -g npm worked for me.

编辑:npm install -g npm为我工作。

我怎样才能更新npm本身?

#1


6  

You can try this :

你可以试试这个:

cd /usr/lib/node_modules

cd / usr / lib / node_modules

npm install npm@latest

npm install npm @ latest

Edit : npm install -g npm worked for me.

编辑:npm install -g npm为我工作。

我怎样才能更新npm本身?