Reputation: 73
Downloaded and installed lein script per website instructions (to my understanding), but for some reason it's installing as version 1.7.1 even though the script specifies version 2.6.1
I've tried running in /usr/ as well as /usr/local/bin/, both with the same result
Upvotes: 1
Views: 106
Reputation: 91554
This usually happens because lein is installed both manually and through a package manager such as home-brew or apt-get where the system package is very old and being places first on the $PATH so it gets run instead of the one you installed. First thing to check is that your package manager does not have leiningen installed (and if so, uninstall or update it)
Upvotes: 2