|
|
|
|
|
by andrewvc
4013 days ago
|
|
It really doesn't make sense to 'install' clojure the language. Generally one would use apt to install java. Then, you'd download 'lein' the clojure build tool (which does not require a clojure 'install'), and then specify the clojure version in your project.clj file. Lein builds your project and downloads the correct clojure version. For distributing your app, you just compile it to a JAR, and the user only needs plain old java to run it. |
|