So I go to clojure.org/downloads and it says I can get clojure via leiningen. Great. I go to leiningen.org and think I'm following the instructions. It says to get their bash script and put it in your ~/bin/ Did it. Make it executable. Did it. ...then what? run the script? It doesn't say, but I did. This creates a .lein , which I suppose it should. Now what? How do I now install clojure? This is what clojure.org/downloads says:
Modify the dependencies and repositories sections of your Leiningen project.clj file, specifying the version of Clojure that you want:
; under dependencies, select the release of clojure
; (and optionally clojure-contrib) that you want
:dependencies [[org.clojure/clojure
"1.5.0-alpha5"]]
but I have no idea what that means since I find no "project.clj" file anywhere. ~/.lein/self-installs has a monster leiningen-2.1.3-standalone.jar file, which probably doesn't want me hacking on it. What should I do now? How could I better inform myself in the future?
lein new my-first-project
ran -- and runninglein repl
seemed to do some sort of downloading too ... of what? Is clojure now somewhere on my system? – Hypnoanalysis