clojure-1.2.0.jar from here http://build.clojure.org/releases/org/clojure/clojure/1.2.0/
and
clojure-contrib-1.2.0.jar from here. http://build.clojure.org/releases/org/clojure/clojure-contrib/1.2.0/
Clojure requires java JDK so if you don't have it installed then you can download it here.
http://www.oracle.com/technetwork/java/javase/downloads/index.html
For Linux, create a shell script called clojure with the following lines and put it in your command path.
#!/bin/sh
java -cp "path/to/clojure/*:$PWD" clojure.main "$@"
For windows create a bat file called clojure.bat with the following content and set your windows path to the clojure folder.
@echo off java -cp "path\to\clojure
\*
;." clojure.main %*
Would appreciate article in Clojure development with Lein or CounterClockwise
ReplyDeleteJust as one option for editors (on Windows) one can use Clojure Box, a pre-configured Emacs for Clojure, which can be installed from http://clojure.bighugh.com/
ReplyDeleteI'm a beginner with both, Clojure and Emacs, but they do both seem like a very good lifetime tools.
Yes indeed there are many ways to install Clojure. Just make sure you have clojure 1.2 or later. These tutorials will require that. Thanks.
ReplyDelete