简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
mac 使用brew切换node版本
查看当前通过brew安装的nodels /usr/local/Cellar/node*查看可以安装的node版本brew search node安装其他node版本brew install node@10通过brew切换node版本brew unlink node@12 && brew link --overwrite --force node@10执行echo 'export P
mac 使用brew卸载安装node
mac 使用brew卸载安装node卸载1. 查看当前安装的node版本:node -v2. 卸载node:brew uninstall node@版本号 --force比如安装的是12.18.1,使用brew uninstall node@12 --force。还有另外两种现在不能用的方法:使用brew uninstall node,会报错:Error: No such keg: /usr/lo
mac 使用brew卸载安装node
mac 使用brew卸载安装node卸载1. 查看当前安装的node版本:node -v2. 卸载node:brew uninstall node@版本号 --force比如安装的是12.18.1,使用brew uninstall node@12 --force。还有另外两种现在不能用的方法:使用brew uninstall node,会报错:Error: No such keg: /usr/lo
到底了