HOW TO INSTALL VSCODE IN KALI LINUX
Monday, 14 September 2020
Install Visual Studio Code on Kali Linux
We will be using the official APT repository for the installation of Visual Studio Code on Kali Linux. Before adding the repository, update your system and install the package below.
sudo apt update
sudo apt install curl gpg software-properties-common apt-transport-https
Import Microsoft GPG key to your Kali Linux:
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
Then add APT repository for VS Code to Kali Linux:
echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" | sudo tee /etc/apt/sources.list.d/vscode.list
Finally install Visual Studio Code on Kali Linux:
sudo apt update
sudo apt install code
Once Visual Studio Code is installed on Kali Linux, launch it:
OPEN TERMINAL AND TYPE CODE AND HIT ENTER