LoginSignup
3
1

More than 5 years have passed since last update.

Ubuntu に npm をインストールする

Last updated at Posted at 2018-05-27

UbuntuにNode.jsをインストールする

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

最新のバージョンがほしい方は
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs

最後に、npmをアップデート
sudo npm update -g npm

参考リンク

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