Skip to content

Instantly share code, notes, and snippets.

@hawkup
Last active August 29, 2015 14:22
Show Gist options
  • Save hawkup/4f65660dbdfad528e7cc to your computer and use it in GitHub Desktop.
Save hawkup/4f65660dbdfad528e7cc to your computer and use it in GitHub Desktop.
Installation Grails on Ubuntu 14.04

#Prerequisite

  • JDK

#Installation

  1. Download grails

    wget https://github.com/grails/grails-core/releases/download/v3.0.1/grails-3.0.1.zip
    
  2. Unzip

    sudo unzip grails-3.0.1.zip -d /usr/local/share
    
  3. Export

```
export GRAILS_HOME=/usr/local/share/grails-3.0.1
export PATH=$PATH:$GRAILS_HOME/bin
```

Another install by use GVM

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