在windows安装node版本管理工具,会出很多错
这是安装nvm-windows的流程
step1
bash
在github上下载最新版本
https://github.com/coreybutler/nvm-windows/releases
下载nvm-setup.exe或者nvm-setup.zip的安装包,这样会在安装时给你配置电脑的环境变量
安装nvm时,必须要*自定义安装目录*,否侧后续出问题难解决
例如:E:\soft20231011\nvm
step2
bash
nvm安装完要修改node的全局配置
查看当前配置
npm config get prefix
npm config get cache
npm config set prefix "E:\soft20231011\nvm\v20.8.0" // 根据自己目录选择node版本
npm config set cache "E:\soft20231011\node_cache"
step3
bash
如果用yarn,也要配置全局
用nvm时 yarn global bin 和 yarn global dir 的目录不一致,会报错
错误是这个 "yarn报错文件名、目录名或卷标语法不正确"
这时要修改yarn global dir 目录,如下
yarn global bin //E:\soft20231011\nvm\v20.8.0\bin
yarn global dir
yarn cache dir
yarn config set global-folder E:\soft20231011\nvm\yarn\yarn_global
yarn config set cache-folder E:\soft20231011\nvm\yarn\yarn_cache