Visual Studio Code is a source-code editor made by Microsoft for Windows, Linux and macOS. It is a streamlined code editor with support for development operations like debugging, task running, and version control. It aims to provide just the tools a developer needs for a quick code-build-debug cycle and leaves more complex workflows to fuller featured IDEs, such as Visual Studio IDE.
In this guide we are going to install Visual Studio Code in a Fedora 35 Workstation.
Related Content
- How to Install Postman REST Client in Fedora 34/35
- How to install Atom Text Editor on Fedora 35
- How to install Fedora 35 Gnome step by step with screenshots
- Things to do on a Fresh Fedora 35 Desktop Install
Prerequisites
To follow along, ensure that you have the following:
- Up to date Fedora 35 Workstation
- Root access or User with sudo access on the server
Ensuring that Fedora 35 Workstation is up to date
Before proceeding let us ensure that our workstation is up to date. Use this command to achieve this:
|
|
Installing Visual Studio Code
Visual Studio Code packages for Fedora Linux are available on an RPM repository maintained by Microsoft. But you need to import GPG key and add the repository before doing the actual installation of VS Code on Fedora.
To add the repository, let’s start by install the key
|
|
Then installing the repository
|
|
Now update the package cache and install the package using dnf
|
|
Alternatively, you can download the VS Code .rpm file and install it directly:
|
|
You can check all the information about the installed package.
|
|
Launching VS Code
To Launch VS Code on Fedora, open up your terminal then run this command:
|
|
Or search from activities menu.
You should get VS Code welcome window.
You can then install the plugins to extend VS Code functionality.
Conclusion
We managed to install VS Code in a Fedora 35 Workstation in this guide.