Answers for "install vscode linux"

12

vscode for 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
Posted by: Guest on September-26-2020
9

install vscode ubuntu command line

sudo snap install --classic code
Posted by: Guest on May-07-2020
1

install 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
Posted by: Guest on December-27-2020
6

vs code download linux

sudo snap install code --classic
Posted by: Guest on December-19-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language