Re: Noob: Getting (re)started with Clojure on OS X

2020-03-28 Thread R Aguilera
I was having the same issue as above and deleting my `lein` folder in my root directory solved my issue. Thank you so much, I was about to give up learning Clojure. On Wednesday, March 13, 2019 at 10:20:08 AM UTC-7, Sean Corfield wrote: > > Check what’s in your ~/.lein/profiles.clj file – that’s

Re: Noob: Getting (re)started with Clojure on OS X

2019-05-02 Thread marcpiresrj
-- > *From:* clo...@googlegroups.com > on behalf of Kenneth Beesley > > *Sent:* Wednesday, March 13, 2019 10:54:19 AM > *To:* clo...@googlegroups.com > *Subject:* Re: Noob: Getting (re)started with Clojure on OS X > > > > On 13Mar2019, at 10:19, Sean Corfield >

RE: Noob: Getting (re)started with Clojure on OS X

2019-03-14 Thread Sean Corfield
" -- Margaret Atwood From: clojure@googlegroups.com on behalf of Kenneth Beesley Sent: Wednesday, March 13, 2019 10:54:19 AM To: clojure@googlegroups.com Subject: Re: Noob: Getting (re)started with Clojure on OS X On 13Mar2019, at 10:19, Sean Corfield mailto:s...@cor

Re: Noob: Getting (re)started with Clojure on OS X

2019-03-13 Thread Nathan Fisher
I would even argue against using central profiles. I think it obscures behavioural differences between machines and can impair reproducibility. Arguably better to have all deps in project where possible. On Wed, Mar 13, 2019 at 22:45, Mike Rodriguez wrote: > > [cider/cider-nrepl "0.8.2"] > > is q

Re: Noob: Getting (re)started with Clojure on OS X

2019-03-13 Thread Mike Rodriguez
[cider/cider-nrepl "0.8.2"] is quite old. It looks like lein 2.9.1 (as of 2.8.2) uses a newer version of nrepl that requires cider-nrepl 0.18+ or something along those lines. In newer versions of cider, you may not need to include this plugin at all. I know that the "jack-in" commands of cider

Re: Noob: Getting (re)started with Clojure on OS X

2019-03-13 Thread Kenneth Beesley
> On 13Mar2019, at 10:19, Sean Corfield wrote: > > Check what’s in your ~/.lein/profiles.clj file – that’s usually the cause of > bizarre errors that people report with Leiningen. Hello Sean, Hah! I changed my ~/.lein/profiles.clj from {:user {:plugins [[cider/cider-nrepl "0.8.2"]]}} to

Re: Noob: Getting (re)started with Clojure on OS X

2019-03-13 Thread Kenneth Beesley
Many thanks for the reply. My ~/.lein/profiles.clj file looks like {:user {:plugins [[cider/cider-nrepl "0.8.2"]]}} What should it look like? * I've used Java quite a bit, and my CLASSPATH is extensive. It’s set in my ~/.bashrc What’s my next step? Best, Ken > On 13Mar2019, at 10:1

RE: Noob: Getting (re)started with Clojure on OS X

2019-03-13 Thread Sean Corfield
Check what’s in your ~/.lein/profiles.clj file – that’s usually the cause of bizarre errors that people report with Leiningen. Also check your environment variables: env|fgrep CLASSPATH Per the warning, you probably want to remove whatever is setting that (from one of your shell’s dot files, pe