Skip to content

Instantly share code, notes, and snippets.

@hawkup
Last active June 21, 2017 18:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save hawkup/d22a4b9df2efe316424f to your computer and use it in GitHub Desktop.
Save hawkup/d22a4b9df2efe316424f 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