Skip to content Skip to sidebar Skip to footer

Python Anaconda Linking

I've been trying to install gdal on my Mac, but have been getting errors when running ogr2ogr like so: dyld: Library not loaded: libcurl.4.dylib Referenced from: /usr/local/bin/o

Solution 1:

The curl package that comes with Anaconda on Mac is not really needed, since Mac OS X comes with its own curl. So removing it is fine.

Solution 2:

This is an indirect answer, but I had configuration issues with both Anaconda and Enthought Canopy on my MacBook Air. No trouble at all building out packages using Homebrew. I installed GDAL, shapely, etc. with Homebrew after first following the instructions on this link for general NumPy SciPy ecosystem packages:

http://joernhees.de/blog/2013/06/08/mac-os-x-10-8-scientific-python-with-homebrew/

I think two or three of those packages failed, but I was able to dig out an additional dependency or use pip or setup_tools to grab it instead. I think I used pip to grab gdal, etc. afterwards.

Post a Comment for "Python Anaconda Linking"