共计 757 个字符,预计需要花费 2 分钟才能阅读完成。
1. 装置 nvm
装置命令
curl -o(https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh) | bash
装置完 nvm 后,输出 nvm,当看到有输入时,则 nvm 装置胜利。如果遇到敞开 shell 后遇到以下提醒:
-bash: nvm: command not found
编辑.bash_profile 文件,没有的话就新建一个,命令都是:
vi .bash_profile
而后将以下代码复制进去,保留退出
export NVM_DIR="$HOME/.nvm"
[-s "$NVM_DIR/nvm.sh"] && . "$NVM_DIR/nvm.sh"
而后 source 一下 .bash_profile
source .bash_profile
2. 应用 nvm
nvm install stable # 装置最新稳定版 node,当初是 5.0.0
nvm install 4.2.2 # 装置 4.2.2 版本
nvm install 0.12.7 # 装置 0.12.7 版本
# 特地阐明:以下模块装置仅供演示阐明,并非必须装置模块
nvm use 4 # 切换至 4.2.2 版本
npm install -g mz-fis # 装置 mz-fis 模块至全局目录,装置实现的门路是 /Users/< 你的用户名 >/.nvm/versions/node/v0.12.7/lib/mz-fis
nvm use 0 # 切换至 0.12.7 版本
npm install -g react-native-cli #装置 react-native-cli 模块至全局目录,装置实现的门路是 /Users/< 你的用户名 >/.nvm/versions/node/v4.2.2/lib/react-native-cli
nvm alias default 0.12.7 #设置默认 node 版本为 0.12.7
正文完