“Установите vscode linux” Ответ

VSCODE для Ubuntu Linux

wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
sudo apt update
sudo apt install code
Persea Lusitanae

Установить командную строку VSCODE Ubuntu

sudo snap install --classic code
Successful Starling

Установите vscode linux

sudo snap install --classic code 

# other methode
sudo apt install ./<file>.deb

# If you're on an older Linux distribution, you will need to run this instead:
# sudo dpkg -i <file>.deb
# sudo apt-get install -f # Install dependencies
BlueMoon

VS код скачать Linux

sudo snap install code --classic
Real Rat

Как установить код Visual Studio на Ubuntu Linux

# Update the packages index and install the dependencies by running the following 
# command as a user with sudo privileges :
       ==> sudo apt update
       ==> sudo apt install software-properties-common apt-transport-https wget

# Import the Microsoft GPG key using the following wget command :
	   ==> wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -

# And enable the Visual Studio Code repository by typing:
	   ==> sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"

# Once the apt repository is enabled , install the Visual Studio Code package:
	   ==> sudo apt install code
        
# When a new version is released you can update the Visual Studio Code package 
# through your desktop standard Software Update tool or by running the following commands in your terminal:

       ==> sudo apt update
       ==> sudo apt upgrade
       
// With love @kouqhar
kouqhar

Ответы похожие на “Установите vscode linux”

Вопросы похожие на “Установите vscode linux”

Больше похожих ответов на “Установите vscode linux” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования