Skip to content

Instantly share code, notes, and snippets.

@marc0der
Created April 4, 2011 16:07
Show Gist options
  • Save marc0der/901884 to your computer and use it in GitHub Desktop.
Save marc0der/901884 to your computer and use it in GitHub Desktop.
Install Grails on Ubuntu through LaunchPad
sudo add-apt-repository ppa:groovy-dev/grails
sudo apt-get update
sudo apt-get install grails-ppa
#to add grails 2.0.x
sudo apt-get install grails 2.0.x
#to add grails 1.3.9
sudo apt-get install grails-1.3.9
#to add grails 1.2.5
sudo apt-get install grails-1.2.5
#switch between versions
sudo update-alternatives --config grails
@panique
Copy link

panique commented Nov 6, 2012

Completely useless if you need an older version. Seriously, why is this so ridicolous hard to install this on linux ? sudo apt-get install grails-1.3.9 will install 1.3.9, but after first start of grails it updates to 2.x automatically.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment