LoginSignup
4
5

More than 5 years have passed since last update.

nvmで、Node.jsとnpmのインストール(Mac)

Posted at

# nvmのインストール
git clone git://github.com/creationix/nvm.git ~/.nvm

# 設定の読込
echo "source ~/.nvm/nvm.sh" >> ~/.bash_profile && source ~/.bash_profile

# nvmのバージョン確認
nvm --version

# install 可能なnode確認
nvm ls-remote

# v8.9.3のインストール(Latest)
nvm install v8.9.3

# インストールされたか確認
node -v

# npmも確認
npm -v

4
5
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
4
5