Wednesday, August 28, 2019

3 Ways To Install Visual Studio Code on Ubuntu 18.04.2 LTS

 Video Tutorial - https://youtu.be/q0IdLgq_5Fg

Visual Studio Code is a free cross-platform source code editor developed by Microsoft. It has built-in debugging support, embedded Git control, syntax highlighting, code completion, code refactoring, and snippets.                       

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Os:  Ubuntu 18.04.2 LTS Bionic Beaver 64Bit      Hostname:           IP Address of Server:

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

lsb_release -cd  ; getconf LONG_BIT ; whoami
apt update -y ; apt install -y build-essential software-properties-common curl gdebi apt-transport-https git

Method:1
https://code.visualstudio.com/Download
gdebi

Method:2
apt install snapd -y
snap install vscode --classic
Or
snap install code --classic

Method:3
curl -sSL https://packages.microsoft.com/keys/microsoft.asc -o microsoft.asc
apt-key add microsoft.asc
echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"  | sudo tee /etc/apt/sources.list.d/vscode.list
apt update ; apt install -y code
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment