[Numpy-discussion] NumPy 1.8.1 release

Matthew Brett matthew.brett at gmail.com
Fri Mar 28 20:17:06 EDT 2014


On Fri, Mar 28, 2014 at 5:09 PM, Sturla Molden <sturla.molden at gmail.com> wrote:
> On 29/03/14 00:05, Julian Taylor wrote:
>
>> But the library is still installed in the system (at least on the 10.9
>> macs I saw)
>>
>
> I only find it in the gfortran 4.8 I installed separately. Nowhere else.

Have a look at the README for delocate:
https://github.com/matthew-brett/delocate

The worked example is scipy; you can see it copying these libs into
the binary wheel:

/usr/local/Cellar/gfortran/4.8.2/gfortran/lib/libgcc_s.1.dylib
/usr/local/Cellar/gfortran/4.8.2/gfortran/lib/libgfortran.3.dylib
/usr/local/Cellar/gfortran/4.8.2/gfortran/lib/libquadmath.0.dylib

in this case from a homebrew installation.  The resulting wheel is here:

https://nipy.bic.berkeley.edu/scipy_installers/numpy-1.8.0-cp27-none-macosx_10_6_intel.whl

If you do:

pip install --upgrade pip
pip install --pre --find-links
https://nipy.bic.berkeley.edu/scipy_installers scipy

you should find that you get a scipy version that passes its tests,
even if you rename your libgcc file.

Cheers,

Matthew



More information about the NumPy-Discussion mailing list