Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having serious difficulty installing Scipy with pip on Mountain Lion. I've tried:

sudo pip install -e git+https://github.com/scipy/scipy#egg=scipy-dev

As suggested in various places on the web.

This leads to errors like:

ld: library not found for -lgcc
lipo: can't figure out the architecture type of: /var/tmp//ccC2HLVs.out

and several warnings (I assume not serious) before the errors.

Does anybody have any suggestions?

Thanks.

share|improve this question
1  
I haven't installed Mountain Lion yet, but by experience, I'd suggest to stay away from pip in a first step. Download the sources and compile them yourself with python setup.py install --user. The --user flag will force the installation in ~/.local, no need for a sudo. – Pierre GM Aug 23 '12 at 13:51

4 Answers

up vote 6 down vote accepted

Pip has difficulties with scipy on OS X in general. It is not trivial to install from the sources, so I advise against it. In OS X you have a few better options:

  • Scipy superpack, a bunch of precompiled binaries
  • Enthought Python Distribution (free or another) has already everything you'll need (numpy, scipy, matplotlib, etc.)
  • MacPorts, probably the most flexible option that allows you to install and maintain a python distribution
share|improve this answer
2  
I was hoping to do this through pip partly to keep control of my environment. I seem to recall that is was possible with a previous version of OSX. I'm partly confused by why the suggestions of installing the dev version (which presumably works for others) isn't working for me... – arlogb Aug 24 '12 at 11:58
1  
@arlogb From the scipy webpage: "Also note that the use of pip and especially easy_install is not recommended, as these tools often have problems where the standard python setup.py install does not." – tiago Aug 24 '12 at 17:30
OK I take your point. – arlogb Aug 24 '12 at 19:55
1  
This is a bit late, but with regards to installing via PIP, it seems to work well for me, so long as I install the pseudo-optional requirements first. In general, I have to do # Install numpy and PIL first, so PIP doesn't # mess up the scipy install. pip install numpy pil pip install -r requirements.txt # containing scipy The relevent PIP Issue is Github #25 – Spikes Jan 31 at 3:52

Scipy is also available now via a homebrew tap. If you have homebrew installed:

brew tap samueljohn/python
brew install scipy

See more info here: homebrew-python

share|improve this answer
1  
In addition, I needed to first use Homebrew's Python ('brew install python; brew link --overwrite python'), and after the tap and scipy install (which are successful): 'pip install python-dateutil'. – akauppi Feb 1 at 12:23

Just to add to what @Anton I. Sipos said. I had the Enthought package installed but had issues with upgrading it, so I decided to go with a clean install using Homebrew. Unfortunately just performing the tap and install didn't work well for me. So on searching a bit I found an issue on GitHub that samualjohn addressed and worked for me:

brew remove python
rm -rf /Library/Python/2.7/site-packages # it's save to delete this!
brew install python
pip install nose
brew install numpy
brew install scipy

The problem was clearly conflicts in the site-packages that the Enthought uninstall instructions did not cover.

NOTE: I had to install matplotlib with pip.

share|improve this answer

I recently also had trouble getting scipy to install on a virtualenv. My problem was that gfortran was not seen properly. I used macports sudo port install gcc48 and created a symlink to just gfortran by:

sudo ln -s /opt/local/bin/gfortran-mp-4.8 /opt/local/bin/gfortran

After that, pip install scipy worked without any errors on my virtualenv.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.