Does anyone know how I can to install Gradle into a Cloud 9 workspace?
These are my current instructions:
linux> wget http://services.gradle.org/distributions/gradle-1.10-bin.zip
linux> unzip -q gradle-1.10-bin.zip -d /usr/local/ # <== GET STUCK HERE
linux> echo "export GRADLE_HOME=/usr/local/gradle-1.10" >> .profile
linux> echo "export PATH=$PATH:$GRADLE_HOME/bin" >> .profile
But I get the following error when I type: unzip -q gradle-1.10-bin.zip -d /usr/local/
quinnliu@walnutiq:~/743682 (master) $ unzip -q gradle-1.10-bin.zip -d /usr/local/
checkdir error: cannot create /usr/local/gradle-1.10
Permission denied
unable to process gradle-1.10/.
checkdir error: cannot create /usr/local/gradle-1.10
Permission denied
unable to process gradle-1.10/getting-started.html.
Is there some kind of work around?