How to install Visual Studio Code on Arch-based Linux Distributions(Manjaro) ?
Last Updated :
27 Jun, 2022
Visual Studio Code is free, powerful and one of the most popular IDE in the market. It is a cross-platform application and can be customized heavily by installing various extensions. All the modern programming languages like C, C++, Java, Python, JavaScript, React, Node JS, etc., are all supported by it.
Features of VS Code
- Open-source
- Integrated terminal(CLI)
- Git Integration
- Task runner
- Large community
- Thousands of extensions
- Inbuilt support for multi-cursor and text-wrapping
Since VS Code is proprietary software by Microsoft Corp. and not available in the official repositories, we cannot install it using Pacman. So, this article will discuss the most common way to install VS Code on Arch/Manjaro/Chakra.
Installing VS Code
For this tutorial, we are going to use the Yay AUR helper, which is one of the many AUR helpers that can be used to install AUR packages.
Step 1: Before installing yay, we must install the git and base-devel group packages on the system.
$ sudo pacman -S --needed base-devel git
Step 2: Now, install yay by running the following
$ git clone https://aur.archlinux.org/yay-git.git
$ cd yay-git
$ makepkg -sri
Step 3: Verify the installation by running.
$ yay --version
Step 4: Next, install VS Code by running the following command and opt for the default package once the installation starts.
$ yay -S visual-studio-code-bin
Step 5: Finally, launch VS Code.
Uninstalling VS Code
To uninstall VS Code and all of its config files run:
$ sudo pacman -R visual-studio-code-bin
Similar Reads
How to install Postman on Arch-based Linux Distributions(Manjaro)? Postman is an HTTP client used to build, test, and modify APIs. It provides a graphical user interface through which developers can generate various types of HTTP requests like GET, POST, PUT, PATCH, and DELETE. It is used by more than 20 million developers across the globe to develop RESTful APIs.
1 min read
How to Install CLion IDE on Arch-based Linux Distributions (Manjaro) CLion (pronounced âSea Lionâ) is a cross-platform integrated development environment (IDE) developed by Jetbrains and is available as a free community edition for students and a commercial edition. It is used for developing C++ programs and is one of the most popular C++ IDE on the market. A number
2 min read
How to Install RubyMine on Manjaro (Arch-based Linux Distributions) ? The RubyMine integrated development environment (IDE) is used to develop applications in the Ruby programming language. It is developed by Jetbrains and is available as a free community edition for students and a commercial edition. The RubyMine coding environment supports highlighting, linting, cod
2 min read
How to Install mongodb on Arch-based Linux Distributions(Manjaro) In this article, we are going to see how to install the MongoDB server on Arch-based Linux Distributions. We are going to use the Yay AUR helper, which is one of the many AUR helpers that can be used to install MongoDB or any other AUR package. Installation of MongoDB Step 1: Update and upgrade your
2 min read
How to Install PostgreSQL on Arch-based Linux Distributions (Manjaro) PostgreSQL (often called Postgres) is a free, open-source, and advanced relational database management system and is developed by The PostgreSQL Global Development Group. It is primarily written in the C Programming Language. In addition to SQL (relational) querying, Postgres also supports JSON (non
2 min read