0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

npm i -g npmでnpmのバージョンが上がらない

Posted at

###経緯
久方ぶりにnpmのコマンドを打った。
すると、できれば3か4使ってくれ、みたいな警告を受けた。

$ npm -v
2.7.4

だいぶ放置してましたからね。

さて、npmはさっぱりなのでgoogle先生に聞きつつ更新してみる。
なるほどnpmコマンドから自身を更新できるのだとか。

$ npm i -g npm
$ npm -v
2.7.4

…あれ?

###結論
詳細はさっぱりですが、どうもnodejsのバージョンが古すぎたっぽい?
(そもそもnpm r -g npmしてもnpm打てたりと謎が多かったけれども)
node -vしてみたところ0.12とか言われて仰天したので最新版をインストール。
改めて。

$ npm i -g npm
$ npm -v
4.0.2

よし。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?