VScode 终端 powerShell 转为 cmd

VScode 终端 powerShell 转为 cmd

因为vue-cli 2.x版本卸载不完全 导致 vue-cli 升级后 在 cmd vue -V 输出的版本是最新的而powerShell vue -V 输出的cli版本却还是2.x,最终找不到解决办法就妥协了,把 vscode 的终端 由powerShell转为 cmd
1、打开vscode设置—> 搜索 shell
VScode 终端 powerShell 转为 cmd_第1张图片

2、在setting.json这里加上这行代码

terminal.integrated.automationShell.windows": "C:\\Windows\\System32\\cmd.exe"

VScode 终端 powerShell 转为 cmd_第2张图片
3、在vscode的cmd终端 使用 vue命令可能会报

‘vue‘ 不是内部或外部命令,也不是可运行的程序 或批处理文件的方法

4、这时候就要把 vue.cmd 配置到系统环境变量里
ctrl + r 打开 cmd 输入 where vue.cmd 找到 vue.cmd 的路径(或者全局搜索 vue.cmd 不建议 会很慢 )
VScode 终端 powerShell 转为 cmd_第3张图片
5、把vue.cmd的路径配置到环境变量里
VScode 终端 powerShell 转为 cmd_第4张图片
6、最后可以看到cli是最新的版本 cmd也可以用vue命令啦
VScode 终端 powerShell 转为 cmd_第5张图片

你可能感兴趣的:(前端,vue,cmd,vscode,powershell)