The Unfun Cat
The Unfun Cat

Reputation: 31998

"The clojure executable isn’t on your ‘exec-path’" even though lein is on my exec-path (macOS)

I have the following exec-path (according to describe-variable):

("/usr/local/bin/" "/usr/bin/" "/bin/" "/usr/sbin/" "/sbin/" "/usr/local/Cellar/emacs-plus/25.3/libexec/emacs/25.3/x86_64-apple-darwin16.7.0/") 

This is the lein executable path:

/usr/local/bin/lein

This is what happens when I run cider-jack-in:

The clojure executable isn’t on your ‘exec-path’

What gives?

Edit: (cider-lein-command is lein)

Upvotes: 4

Views: 4076

Answers (3)

dhani.el
dhani.el

Reputation: 26

Navigate to the project root folder, where shadow-cljs.edn resides and run npm run watch then you'll be prompted to install shadow-cljs, type y and hit enter (Ok to proceed? (y) y) to install.

Upvotes: 0

maxorcist
maxorcist

Reputation: 369

I would just like to build onto Jonah Benton's answer, in response to ackerleytng's question on how to configure cider to use lein instead:

To change cider build command from clojure to lein, set lein as the value for variable cider-default-repl-command.

For the emacs beginner, you can see and change a variable value with keys C-h v.

Upvotes: 7

Jonah Benton
Jonah Benton

Reputation: 3708

(from the comment)

Looks like cider is looking for the clojure command, not the lein command. "clojure" is an executable that was introduced with the new cli tool:

https://clojure.org/guides/deps_and_cli

Upvotes: 7

Related Questions