Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to install visual studio code in ubuntu

This is actually way easier than the answer  me what you do is -
sudo apt get-update
then run - sudo apt install code
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

install visual studio on ubuntu

wget -qO- https://raw.githubusercontent.com/Botspot/pi-apps/master/install | bash ##installs Pi-Apps
##Go to "editors" and select Visual Studio.
##it will take a bit to download.
Comment

installing visual studio code in ubuntu

sudo apt-get install wget gpg
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
sudo install -D -o root -g root -m 644 packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg
sudo sh -c 'echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/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 visual studio code ubuntu using command line

sudo snap install authy
Comment

install visual studio on ubuntu command line

sudo snap install --classic codeCopy
Comment

PREVIOUS NEXT
Code Example
Shell :: ionic splash screen dimensions 
Shell :: git make new branch 
Shell :: how to save changes made to models in django 
Shell :: batch comment 
Shell :: react native cannot connect to metro server 
Shell :: odoo 14 install ubuntu 20.04 
Shell :: linux scroll terminal 
Shell :: insert image into github wiki 
Shell :: rmdir unix 
Shell :: how to ls git branch 
Shell :: terminal rename 
Shell :: install clang++ 
Shell :: permission denied 
Shell :: git show whole file at commit 
Shell :: update helm repo 
Shell :: doxygen install 
Shell :: fix corrupt pdf command line 
Shell :: gnu octave 
Shell :: copy a file from home directory to other directory in linux 
Shell :: how to push your code to github 
Shell :: Rename File with the rename Command 
Shell :: GIT: List all currently configured remotes 
Shell :: add line to beginning of file shell script 
Shell :: remove branch git 
Shell :: install sonarqube on ubuntu 
Shell :: where are chocolatey packages installed 
Shell :: how to install node_module 
Shell :: c ++ ("Hello World") 
Shell :: delete all files in a folder linux 
Shell :: how to add new line to each line 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =