LoginSignup
1
2

More than 5 years have passed since last update.

npmのinstallがどうしてもうまく行かない人

Last updated at Posted at 2017-11-23

npmのインストールがどうしてもうまく行かない時

環境は、vagrantでdebian(stretch)

nodejsはインストール出来るけどnpmはパッケージに存在してないしでインストールできなかった...
色々調べたけどなかなか載っていなかった...

そして、見つけた。
原因は、nodejsのバージョンなのかもしれない。
とりあえず、解決策

$ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
$ sudo apt-get install -y nodejs

これでnpmも一緒にインストールされる。
終わり。

1
2
2

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
1
2