linux中安装vscode
时间: 2023-11-26 11:44:04 浏览: 73
vscode for linux
5星 · 资源好评率100%
要在Linux中安装VSCode,可以按照以下步骤进行:
1. 打开终端并输入以下命令以下载安装包:
```
wget -O vscode.deb https://go.microsoft.com/fwlink/?LinkID=760868
```
2. 安装依赖项:
```
sudo apt install ./vscode.deb
```
3. 启动VSCode:
```
code
```
阅读全文