Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

install vscode ubuntu command line

sudo snap install --classic code
Comment

installing vs code in ubuntu

sudo apt install snapd
sudo snap install code --classic
Comment

How to Install Visual Studio Code on 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
Comment

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
Comment

install vscode ubuntu

sudo snap install --classic code
Copied!
Comment

vscode installation ubuntu

wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
sudo install -o root -g root -m 644 packages.microsoft.gpg /etc/apt/trusted.gpg.d/
sudo sh -c 'echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/trusted.gpg.d/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" > /etc/apt/sources.list.d/vscode.list'
rm -f packages.microsoft.gpg
Comment

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
Comment

PREVIOUS NEXT
Code Example
Shell :: xclip string to clipboard 
Shell :: how to install react on mac 
Shell :: expo start release mode 
Shell :: kill port in mac 
Shell :: install docker linux mint 
Shell :: windows delete all docker images 
Shell :: wget ignore ssl cert error 
Shell :: how to check in which brach we are in git 
Shell :: firebase commands 
Shell :: uninstall pm2 
Shell :: powershell get all environment variables 
Shell :: how to completely remove node from ubuntu 
Shell :: node js download ubuntu 
Shell :: install rabbitmq on ubuntu 18.04 
Shell :: bash install kubectl 
Shell :: nslookup not found ubuntu 
Shell :: how to install grub customizer 
Shell :: screen kill all 
Shell :: tays vimrc 
Shell :: cancel a commit not pushed 
Shell :: ubuntu speedtest 
Shell :: mui version check 
Shell :: clone mongodb database to local machine 
Shell :: install en_web_core md 
Shell :: ionic capacitor v3 run android livereload 
Shell :: bash iterate over lines of a file 
Shell :: linux show number of cores 
Shell :: bash create file with content 
Shell :: git track filename capitalisation 
Shell :: remove junk files from ubuntu via terminal 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =