I installed geopandas
with
conda install --channel https://conda.anaconda.org/conda-forge geopandas
which installed libgdal
, libnetcdf
, fiona
, geopandas
, kealib
and a bunch of other packages.
The import gave me a conflict with libnetcdf
, so I tried with:
conda install libnetcdf
The original error disappeared, but now when I try import geopandas
, the fiona
requirement gives an error. This is the traceback:
/Users/username/anaconda3/lib/python3.5/site-packages/fiona/collection.py in <module>()
6
7 from fiona import compat
----> 8 from fiona.ogrext import Iterator, ItemsIterator, KeysIterator
9 from fiona.ogrext import Session, WritingSession
10 from fiona.ogrext import (
ImportError: dlopen(/Users/username/anaconda3/lib/python3.5/site-packages/fiona/ogrext.cpython-35m-darwin.so, 2): Symbol not found: __ZN2H56H5FileC1ERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEjRKNS_17FileCreatPropListERKNS_15FileAccPropListE
Referenced from: /Users/username/anaconda3/lib//libkea.1.4.6.dylib
Expected in: /Users/username/anaconda3/lib//libhdf5_cpp.12.dylib
in /Users/username/anaconda3/lib//libkea.1.4.6.dylib
Thanks!