Fading Coder

One Final Commit for the Last Sprint

Home > Tech > Content

Installing Visual Studio Code on Ubuntu Using Ubuntu Make

Tech 2

Ubuntu Make, previous known as the Ubuntu Developer Tools Center, is a command-line utility designed to streamline the installation of various development environments, programming languages, and IDEs. This guide details the process of using Ubuntu Make to install Microsfot's Visual Studio Code editor on Ubuntu systems.

Prerequisites Insure your system is running a 64-bit version of Ubuntu. The installation method described requires Ubuntu Make version 0.7 or higher, which is available via an official PPA for Ubuntu 14.04, 15.04, 16.04, and later releases.

Step 1: Install Ubuntu Make First, add the Ubuntu Make PPA repository to your system, update the package list, and install the ubuntu-make package.

sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt update
sudo apt install ubuntu-make

Step 2: Installl Visual Studio Code Once Ubuntu Make is installed, execute the following command to initiate the Visual Studio Code installation.

umake ide visual-studio-code

The installer will prompt you to specify a installation directory. After reviewing the terms and conditions, confirm the installation by typing a and pressing Enter. The tool will proceed to download and set up Visual Studio Code.

Upon completion, you can launch Visual Studio Code from your system's application menu or by searching for it in the Unity launcher.

Removing Visual Studio Code To uninstall Visual Studio Code, use the corresponding Ubuntu Make removal command.

umake ide visual-studio-code --remove

Related Articles

Understanding Strong and Weak References in Java

Strong References Strong reference are the most prevalent type of object referencing in Java. When an object has a strong reference pointing to it, the garbage collector will not reclaim its memory. F...

Comprehensive Guide to SSTI Explained with Payload Bypass Techniques

Introduction Server-Side Template Injection (SSTI) is a vulnerability in web applications where user input is improper handled within the template engine and executed on the server. This exploit can r...

Implement Image Upload Functionality for Django Integrated TinyMCE Editor

Django’s Admin panel is highly user-friendly, and pairing it with TinyMCE, an effective rich text editor, simplifies content management significantly. Combining the two is particular useful for bloggi...

Leave a Comment

Anonymous

◎Feel free to join the discussion and share your thoughts.