Is Visual Studio Code Available on Linux?

· Developer Tools

Introduction

Visual Studio Code is the most popular code editor in the world, and Linux is a first-class supported platform. Microsoft provides official packages for all major distributions.

Key Takeaways

Installation Methods

Debian/Ubuntu (.deb)

sudo apt update
sudo apt install code

Or download the .deb package from the VS Code website and install with:

sudo dpkg -i code_*.deb
sudo apt install -f

Fedora/RHEL (.rpm)

sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo dnf install code

Snap

sudo snap install code --classic

Arch Linux

yay -S visual-studio-code-bin

What Works Perfectly

Minor Differences

Conclusion

VS Code is fully available and well-supported on Linux. It offers the same rich editing experience as on Windows and macOS, with official packages for every major distribution and architecture. For Linux developers, it’s a top-tier choice alongside native editors like Neovim and Emacs.

Frequently Asked Questions

Is VS Code on Linux the same as on Windows?

Almost identical. The interface, extensions, and features are the same. Minor differences exist in keyboard shortcuts (Ctrl instead of Cmd) and some OS-specific integrations.

Can I use VS Code on ARM Linux (Raspberry Pi)?

Yes. Microsoft provides ARM64 and ARMhf builds of VS Code for Linux.

What is VSCodium?

VSCodium is a community build of VS Code without Microsoft's telemetry and branding. It is functionally identical but uses the Open VSX extension marketplace instead of Microsoft's.

Tags: linuxvs-codedeveloper-tools