Answers for "vs code install at ubuntu"

22

install vscode ubuntu command line

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

visual studio code ubuntu

curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt install apt-transport-https
sudo apt update
sudo apt install code
Posted by: Guest on August-05-2021
0

install vs code on ubuntu

go to https://code.visualstudio.com/download then download .deb file if you already have gdebi installed you can run sudo gdebi code_1.55.0-1617120720_amd64.deb
Posted by: Guest on April-03-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language