Windows下nodejs版本切换可以用nvm来实现,具体方法:
安装nvm
访问nvm官网https://github.com/coreybutler/nvm-windows/releases,下载nvm-setup.zip
之后解压,双击nvm-setup.exe
安装,记住:安装路径最好不要在系统盘(C:/),也不要在带有Program Files
的路劲中。
选择nodejs的安装目录,也一样,不要在系统盘(C:/),也不要在带有Program Files
的路劲中。
安装nodejs
Win + R,cmd回车,打开cmd窗口,运行:
nvm list available
| CURRENT | LTS | OLD STABLE | OLD UNSTABLE |
|--------------|--------------|--------------|--------------|
| 16.5.0 | 14.17.3 | 0.12.18 | 0.11.16 |
| 16.4.2 | 14.17.2 | 0.12.17 | 0.11.15 |
| 16.4.1 | 14.17.1 | 0.12.16 | 0.11.14 |
| 16.4.0 | 14.17.0 | 0.12.15 | 0.11.13 |
| 16.3.0 | 14.16.1 | 0.12.14 | 0.11.12 |
| 16.2.0 | 14.16.0 | 0.12.13 | 0.11.11 |
| 16.1.0 | 14.15.5 | 0.12.12 | 0.11.10 |
| 16.0.0 | 14.15.4 | 0.12.11 | 0.11.9 |
| 15.14.0 | 14.15.3 | 0.12.10 | 0.11.8 |
| 15.13.0 | 14.15.2 | 0.12.9 | 0.11.7 |
| 15.12.0 | 14.15.1 | 0.12.8 | 0.11.6 |
| 15.11.0 | 14.15.0 | 0.12.7 | 0.11.5 |
| 15.10.0 | 12.22.3 | 0.12.6 | 0.11.4 |
| 15.9.0 | 12.22.2 | 0.12.5 | 0.11.3 |
| 15.8.0 | 12.22.1 | 0.12.4 | 0.11.2 |
| 15.7.0 | 12.22.0 | 0.12.3 | 0.11.1 |
| 15.6.0 | 12.21.0 | 0.12.2 | 0.11.0 |
| 15.5.1 | 12.20.2 | 0.12.1 | 0.9.12 |
| 15.5.0 | 12.20.1 | 0.12.0 | 0.9.11 |
| 15.4.0 | 12.20.0 | 0.10.48 | 0.9.10 |
This is a partial list. For a complete list, visit https://nodejs.org/download/release
使用:
nvm install 16.5.0
最后一个参数是版本号,就可以安装了。
切换nodejs版本
在项目中运行:
nvm use 16.5.0
这样就切换到自己需要的nodejs版本。