1 2 3 4 5 6 7 8 9 10 11 12 13 |
# 安装配置 Node Version Manager,用来管理安装使用特定版本 $ git clone https://github.com/nvm-sh/nvm.git $ cd nvm $ bash install.sh # 刷新环境变量,使得设置生效 $ source ~/.bashrc $ nvm install 12.16.2 $ nvm use 12.16.2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# 安装配置 Node Version Manager,用来管理安装使用特定版本 $ git clone https://github.com/nvm-sh/nvm.git $ cd nvm $ bash install.sh # 刷新环境变量,使得设置生效 $ source ~/.bashrc $ nvm install 12.16.2 $ nvm use 12.16.2 |