Visual Studio Code 简称 VS Code 是 Microsoft 开发的免费开源跨平台代码编辑器。 它具有内置的调试支持,嵌入式 Git 控件,语法高亮,代码完成,集成终端,代码重构和代码片段。 可以使用扩展来扩展 Visual Studio 代码功能。
本教程介绍如何在 Debian 系统上使用 apt 命令通过软件源安装 VS Code 代码编辑器。
前提条件
首先,确保你使用的帐号具有 sudo 权限,如果没有,查看教程如何创建sudo用户来创建。
在Debian上安装VS Code
在你的Debian linux操作系统上通过以下步骤来完成 VS Code 的安装。
01、首先输入以下内容来更新软件包索引并安装依赖项:
sudo apt update
sudo apt install software-properties-common apt-transport-https curl
02、使用以下curl命令导入Microsoft GPG密钥:
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
将Visual Studio代码存储库添加到你的系统:
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
03、添加存储库后,安装最新版本的Visual Studio代码:
sudo apt update
sudo apt install code
至此, Visual Studio Code已安装在你的 Debian linux操作系统上了,你可以开始使用它。
启动 VS Code 代码编辑器
一旦在 Debian 系统上安装了 VS Code,您就可以通过键入代码或单击 VS Code 图标(Activities - > Visual Studio Code)从命令行启动它。