Skip to content

Instantly share code, notes, and snippets.

@juanem1
Last active August 5, 2023 19:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanem1/4c87782bad23f9cd8beb to your computer and use it in GitHub Desktop.
Save juanem1/4c87782bad23f9cd8beb to your computer and use it in GitHub Desktop.
Install WebStorm 10 in Ubuntu
1.- Install java
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
Then make sure that the install was successful by running:
java -version
-------------------------------------------------------
2.- Long Option:
Install gnome-panel with apt-get or Ubuntu software center
At a terminal:
gnome-desktop-item-edit ~/Desktop/ --create-new
Name: WebStorm
Description: WebStorm Launcher
Command: Exec=/your/webStorm/path/bin/phpstorm.sh
-------------------------------------------------------
2.- Short Option:
Create a file with the extension .desktop with this:
#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Icon[en]=/your/webStorm/path/bin/webide.png
Name[en]=WebStorm
Comment[en]=WebStorm Launcher
Exec=/your/webStorm/path/bin/webstorm.sh
Name=WebStorm
Comment=WebStorm Launcher
Icon=/your/webStorm/path/bin/webide.png
:)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment