yarn global add xxxx 后命令 xxx执行失败
针对
yarn global add xxxx 成功后
执行 xxxx -v 类似命令失败
报错 The term 'xxxx' is not recognized as the name of a cmdlet, function, script file, or operable program.
应该是环境变量未配置原因造成
1.先查询 yarn 全局按照位置
=> yarn global bin 得到 D:\apps\node\node_global
2.配置系统环境变量 PATH; 添加参数 D:\apps\node\node_global
3. 再执行 xxxx -v 成功
注: 更新环境变量后 要重启一个终端