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

download vs code in linux

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

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

download vscode linux terminal

sudo snap install --classic code
Copy
Comment

PREVIOUS NEXT
Code Example
Shell :: ng cli generate component 
Shell :: delete all files with specific name ubuntu 
Shell :: open jupyter notebook with anaconda in powershell 
Shell :: windows kill process 
Shell :: failed to push some refs to repository 
Shell :: xamp start ubuntu 
Shell :: create a virtual environment python 3.8 
Shell :: docker compose install debian 
Shell :: get podman ubuntu 
Shell :: pesquisar codigo commit 
Shell :: get vscode extensions with powershell script 
Shell :: kill port mac terminal 
Shell :: check if systemctl service is running linux 
Shell :: how to check laravel installer version 
Shell :: how to go to a folder in git bash 
Shell :: bash get first n characters 
Shell :: microsoft todo for linux 
Shell :: ubuntu install tar.xz 
Shell :: brew install golang-migrate 
Shell :: linux bash how to clear log files debian ubuntu centos 
Shell :: ffmpeg cut video without re encoding 
Shell :: delete folder terminal mac 
Shell :: how to install anything on kali linux 
Shell :: IlluminateHttpExceptionsPostTooLargeException Ubuntu 
Shell :: uninstall multipass 
Shell :: virtualbox guest additions ubuntu 20.04 install 
Shell :: How to remove docker.io from Ubuntu? 
Shell :: extract from tar gz into folder 
Shell :: ngrok download authoken 
Shell :: slow internet wifi speed on ubuntu 18.04 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =