Re: Why won't leiningen install for me?

2011-01-25 Thread Larry Travis
Mark, John, Gaz: Your responses are all suggestive but I don't know where to go from here so I am going to make one more cry for help -- and to this group rather than the leiningen-specific one suggested by Mark because my basic problem is really how-to-get-clojure/emacs-running-under-MacOsX.

Re: Why won't leiningen install for me?

2011-01-25 Thread Sean Allen
I wiped my macports a while back, reinstalled everything I needed and stopped having problems like this. On Mon, Jan 24, 2011 at 9:38 PM, Mark Rathwell mark.rathw...@gmail.comwrote: Seems pretty clear that your macports version of curl is the problem, it's up to you what you want to do about

Re: Why won't leiningen install for me? (NOW IT DOES!)

2011-01-25 Thread Larry Travis
You guys are great! As my dad used to say when he had been greatly helped: Each of you is a scholar and a gentleman. I admire your expertise. You each had knowledgeable and quite helpful suggestions. I ended up using Alex's ideas for getting the Leiningen installation process to avoid

Re: Why won't leiningen install for me?

2011-01-24 Thread Mark Rathwell
Seems pretty clear that your macports version of curl is the problem, it's up to you what you want to do about it. I don't know if uninstalling it would leave you with the OS X version of curl or not. Link to get you started:

Re: Why won't leiningen install for me?

2011-01-24 Thread Alex Osborne
Hi Larry, As a quick temporary workaround you could just set your PATH environment variable so that it picks up the curl executable from /usr/bin instead of the broken MacPorts one from /opt/local/bin. $ which curl /opt/local/bin/curl $ export PATH=/usr/bin:$PATH $ which curl /usr/bin/curl

Re: Why won't leiningen install for me?

2011-01-24 Thread gaz jones
i would totally recommend uninstalling macports, and moving over to homebrew which is far better (https://github.com/mxcl/homebrew). On Mon, Jan 24, 2011 at 8:44 PM, Alex Osborne a...@meshy.org wrote: Hi Larry, As a quick temporary workaround you could just set your PATH environment variable

Why won't leiningen install for me?

2011-01-22 Thread Larry Travis
I get the following when I try to install Leiningen: --- larrytravis$ lein-install.sh self-install Downloading Leiningen now... dyld: Library not loaded: /opt/local/lib/libintl.8.dylib Referenced from: /opt/local/bin/curl Reason: no suitable image found. Did find:

Re: Why won't leiningen install for me?

2011-01-22 Thread Mark Rathwell
Are you using a MacPorts version of wget or curl? If so, see: http://stackoverflow.com/questions/2065904/macports-on-snow-leopard-rsync-library-not-loaded-libintl (note the comment regarding upgrading from Leopard to Snow Leopard) Also, for consistency, you will probably want to name your lein

Re: Why won't leiningen install for me?

2011-01-22 Thread Mark Rathwell
Probably also should have mentioned, there is a leiningen specific group that is fairly active, probably a better place to post these types of questions: http://groups.google.com/group/leiningen On Sat, Jan 22, 2011 at 10:28 AM, Mark Rathwell mark.rathw...@gmail.comwrote: Are you using a

Re: Why won't leiningen install for me?

2011-01-22 Thread Bizics
Hi Larry, I had problems installing too. Turns out curl on mac os x does not support https as required by github now. I had to download and rebuild curl with the +ssl flag for https to be supported and then things worked fine. I could dig up my notes from when I did it if you need more

Re: Why won't leiningen install for me?

2011-01-22 Thread gaz jones
are you sure you dont have curl installed by macports or something? /usr/bin/curl on mac os x works fine with https for me... someone at work had this problem and they had (unknowingly) installed curl through macports... On Sat, Jan 22, 2011 at 1:28 PM, Bizics john.stuart.hun...@gmail.com wrote: