一.安裝node
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash
中間它會給出:
Append the following lines to the correct file yourself
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
相似的提示,這是要你把這段代碼複製到.bash_profile(環境變量文件中),若是沒有就建立一個,touch .bash_profile,再打開 open .bash_profile,複製進去就好
二.使用
git
nvm ls-remote
:列出全部能夠安裝的node版本號
nvm install v10.4.0
:安裝指定版本號的node
nvm use v10.3.0
:切換node的版本,這個是全局的
nvm current
:當前node版本
nvm ls
:列出全部已經安裝的node版本