Answers for "how to update visual studio code through ubuntu terninal"

2

update vs code in ubuntu

sudo add-apt-repository -y "deb https://packages.microsoft.com/repos/vscode stable main "
sudo apt update
sudo apt -y install code
Posted by: Guest on December-21-2020
0

how to update vscode on ubuntu

sudo apt update
sudo add-apt-repository -y "deb https://packages.microsoft.com/repos/vscode stable main "
sudo apt update
sudo apt -y install code
Posted by: Guest on July-16-2021
2

updating vscode on ubuntu

wget https://vscode-update.azurewebsites.net/latest/linux-deb-x64/stable -O /tmp/code_latest_amd64.deb
sudo dpkg -i /tmp/code_latest_amd64.deb
Posted by: Guest on August-03-2020
0

how to update visual studio code through ubuntu terninal

//This one works perfectly if you install VS code through the terminal
sudo apt-get update
sudo apt-get install code
Posted by: Guest on August-18-2021

Code answers related to "how to update visual studio code through ubuntu terninal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language