Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alekpopovic/8cf5d84e3944ba64b414 to your computer and use it in GitHub Desktop.
Save alekpopovic/8cf5d84e3944ba64b414 to your computer and use it in GitHub Desktop.
Install Clojure on Ubuntu 14.04

Prerequisite

  • Java

Installation

  • download clojure
wget http://repo1.maven.org/maven2/org/clojure/clojure/1.6.0/clojure-1.6.0.zip
  • unzip downloaded file
unzip clojure-1.6.0.zip
  • run clojure
cd clojure-1.6.0
java -cp clojure-1.6.0.jar clojure.main
  • set alias
alias clj='java -cp clojure-1.6.0.jar clojure.main'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment