DEV Community

Cover image for Instalación de VCode en Linux Ubuntu
Manuel Ortega Carcamo for 4GeeksAcademy

Posted on

3 2

Instalación de VCode en Linux Ubuntu

Guía de instalación

Abrir una terminal y ejecutar los siguientes pasos:

Actualizar los paquetes disponibles y sus versiones.

sudo apt update
Enter fullscreen mode Exit fullscreen mode

Instalar Vcode

sudo apt install software-properties-common apt-transport-https wget
Enter fullscreen mode Exit fullscreen mode

Importar la clave GPG de Microsoft

wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
Enter fullscreen mode Exit fullscreen mode

Habilitar repositorios de Vcode

sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"

Enter fullscreen mode Exit fullscreen mode

Instalar Vcode

sudo apt install code

Enter fullscreen mode Exit fullscreen mode

Abrir Vcode, escribiendo en la barra de búsqueda de Actividades ‘Visual Studio Code‘

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay