在命令行启动vscode
1.windows使用 code . 命令打开vscode
1、打开vscode安装位置,进入bin文件夹,复制路径 eg:E:\Microsoft VS Code\bin;
2、回到桌面,右键我的电脑,高级系统设置 ,环境变量,编辑path值,在原来的path后面加上eg ;E:\Microsoft VS Code\bin(英文的分号+vscode的bin路径)
原文:https://blog.csdn.net/weixin_42385525/article/details/82893359
2.Mac使用 code . 命令打开vscode
根据终端命令行使用 bash 还是 zsh 选择编辑环境变量的文件。
- bash,写入
~/.bash_profile
- zsh, 写入
~/.zshrc
在里面以上相应文件中写入:
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" // 安装路径
原文:https://blog.csdn.net/feixiang2039/article/details/79656693