How to Install WebStorm on Ubuntu 24.04
This guide explains how to install WebStorm on Ubuntu 24.04 in 2026.
WebStorm WebStorm is a powerful tool for writing JavaScript code. It helps you find errors and suggests improvements as you type. Why use it? It makes coding faster and reduces mistakes. What happens when done? You get a professional environment to build web applications.

General
The best way to manage WebStorm is the JetBrains Toolbox App. It handles updates and keeps your settings synced. If you work on remote servers or use WSL, you can also use JetBrains Gateway to connect your local IDE to a remote environment.
Install JetBrains Toolbox App
- Go to the official JetBrains website %%LNK1%%.
- Download the Toolbox App for Linux.
- Extract the downloaded file.
- Run the
jetbrains-toolboxexecutable. - Open the Toolbox App from your application menu.
- Find WebStorm in the list and click Install.
Install WebStorm via Ubuntu App Center
If you prefer a graphical interface, you can use the Ubuntu App Center.
- Open the App Center from your dock.
- Search for “WebStorm”.
- Click the Install button.
- The system will automatically download and set up the Snap version for you.
Why do this? It is the easiest way for beginners to install software without using the terminal. What happens when done? WebStorm appears in your app list ready to launch.
Install WebStorm via Snap (Terminal)
You can also use the command line to install the Snap package.
Run this command in your terminal:
sudo snap install webstorm --classic
To remove it later, use:
sudo snap remove webstorm
Install WebStorm via Flatpak
Flatpak is another popular way to install apps in a secure, sandboxed environment.
- Install Flatpak:
sudo apt install flatpak - Add the Flathub repository:
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo - Install WebStorm:
flatpak install flathub com.jetbrains.WebStorm
To remove the app later, use:
flatpak uninstall --delete-data com.jetbrains.WebStorm
Conclusion
Installing WebStorm on Ubuntu 24.04 is straightforward. Using the JetBrains Toolbox App is the recommended way to keep your tools updated. Whether you use the App Center or the terminal, you now have a professional coding environment ready for your projects.
[signed-by=/usr/share/keyrings/jetbrains-ppa-archive-keyring.gpg]
Was this guide helpful?
Leave a Reply Cancel reply