In this tutorial, we will show you how to install Visual Studio Code on Fedora 35. For those of you who didn’t know, Visual Studio Code, developed by Microsoft, has rapidly gained popularity among developers worldwide due to its powerful features, extensive customization options, and cross-platform compatibility. This open-source code editor supports a wide range of programming languages and offers a rich ecosystem of extensions, making it a versatile choice for various development tasks.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo
‘ to the commands to get root privileges. I will show you the step-by-step installation of the Visual Studio Code on a Fedora 35.
Prerequisites
- A server running one of the following operating systems: Fedora 35 or Fedora 34.
- It’s recommended that you use a fresh OS install to prevent any potential issues.
- A stable internet connection for downloading the necessary packages.
- SSH access to the server (or just open Terminal if you’re on a desktop).
- A
non-root sudo user
or access to theroot user
. We recommend acting as anon-root sudo user
, however, as you can harm your system if you’re not careful when acting as the root.
Install Visual Studio Code on Fedora 35
Step 1. Before proceeding, update your Fedora operating system to make sure all existing packages are up to date. Use this command to update the server packages:
sudo dnf upgrade sudo dnf update
Step 2. Installing Visual Studio Code on Fedora 35.
By default, VS Code is not available on Fedora 35 base repository. Now run the following command to add the official package VirtualBox repository to your system:
cat << EOF > /etc/yum.repos.d/vscode.repo [code] name=Visual Studio Code baseurl=https://packages.microsoft.com/yumrepos/vscode enabled=1 gpgcheck=1 gpgkey=https://packages.microsoft.com/keys/microsoft.asc EOF
Next, import the GPG key using the following command:
rpm --import https://packages.microsoft.com/keys/microsoft.asc
Let’s use commands to install Visual Studio Code:
sudo dnf update sudo dnf install code
After the installation is complete, you can verify if Visual Studio Code has been installed correctly by running the following command:
code --version
This should display the version number of the installed Visual Studio Code. If you encounter any issues or errors during the installation process, refer to the “Common Problems and Solutions” section below for troubleshooting guidance.
Step 3. Accessing Visual Studio Code on Fedora.
Once successfully installed, open with the path: Activities -> Show Applications -> Visual Studio Code
or use the following command from the terminal:
code
You will see the following window:
Congratulations! You have successfully installed VS Code. Thanks for using this tutorial for installing the Visual Studio Code on your Fedora 35 system. For additional help or useful information, we recommend you check the official Visual Studio Code website.