Install Python Geopandas Failed
I'm trying to install geopandas. Have the following setup: Windows-64 Anaconda2 (64-bit) Python 2.7 Have tried two things: 1) pip install geopandas This gives me the following e
Solution 1:
It is a common problem and the solution is to install all dependencies manually (as Geoff Boeing describes here: https://geoffboeing.com/2014/09/using-geopandas-windows/)
First try to conda install -c conda-forge geopandas
. If it doesn't work, do the following steps:
- Download wheels for your Python version and OS for GDAL, Fiona, pyproj, rtree and shapely (e.g. from Gohlke)
- Uninstall all OSGeo4W, GDAL, Fiona, pyproj, rtree and shapely packages
pip install
the downloaded wheels in the following order: GDAL, Fiona, pyproj, rtree and shapely (for examplepip install GDAL-1.11.2-cp27-none-win_amd64.whl
)- Now you can
pip install geopandas
Solution 2:
I found the best/fastest way to be: create environment w/ geopandas then install jupyter notebook e.g.
- conda create -n python=3.6 geopandas
- conda install jupyter notebook
Solution 3:
Try this code below:
conda install geopandas
Post a Comment for "Install Python Geopandas Failed"