17 January 2012

Installing Aptana 3 on Ubuntu. Basically you have to extract it and then create necessary shortcuts etc...

Get aptana:

Go get Aptana from aptana.com.

Extract the archive:

Extract it to your user directory for an example.

Create shortcut:

Create Aptana.sh file to your desktop and put this code in it. This will make a script that will run Aptana from its directory.
Source code viewer
  1. #!/bin/bash
  2. cd "/directory/to/Aptana Studio 3"
  3. export UBUNTU_MENUPROXY=0
  4. ./AptanaStudio3
Programming Language: Bash