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.
pipin a first step. Download the sources and compile them yourself withpython setup.py install --user. The--userflag will force the installation in~/.local, no need for asudo. – Pierre GM Aug 23 '12 at 13:51