Node.js開発ノート-1:NVMをインストールする(NVM用の人が多いのでnは使わない)
1457 ワード
2017.12.21 Homebrewでのインストールは推奨されていません
公式サイトにはすでに詳細なインストール方法があります.
公式ドキュメントを見ると、私の内容を直接スキップすることができます.以下は私のインストールプロセスです.
私がここで使っているのは:
ここでは、
いいえ.bash_profileこの問題の解決方法:
普通は正常です.bash_プロファイルの内容:
成功したら、バージョン番号を表示
公式サイトにはすでに詳細なインストール方法があります.
https://github.com/creationix/nvm
公式ドキュメントを見ると、私の内容を直接スキップすることができます.以下は私のインストールプロセスです.
私がここで使っているのは:
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash
ここでは、
nvm: command not found
// .bash_profile
cd ~ (ps: cd ~/.nvm , .bash_profile , ~ .bash_profile )
:ls -a | grep .bash_profile
( .bash_profile )
//
defaults write com.apple.finder AppleShowAllFiles Yes && killall Finder
//
defaults write com.apple.finder AppleShowAllFiles No && killall Finder
いいえ.bash_profileこの問題の解決方法:
MAC .bash_profile(ps: cd ~/.nvm , .bash_profile , ~ .bash_profile )
Terminal
home
cd ~
.bash_profile
touch .bash_profile
.bash_profile
open -e .bash_profile
, .bash_profile
source .bash_profile
普通は正常です.bash_プロファイルの内容:
source ~/.bashrc
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
成功したら、バージョン番号を表示
nvm --version