Python library installed geopandas

geopandas dependent libraries


Download
geopandas directly pip installation may be error, you need to install its dependencies: GDAL, Shapely, Fiona, pyproj

(download the corresponding Python version dependencies .whl file)
1, Online download: HTTPS: //www.lfd. uci.edu/~gohlke/pythonlibs/

2, can also be downloaded to my resources (including Python3.6 3.7 and two versions): https://download.csdn.net/download/Aidam_Bo/12191770

SUMMARY exemplary dependencies

  1. GDAL-3.0.4-cp37-cp37m-win_amd64.whl
  2. pyproj-2.5.0-cp37-cp37m-win_amd64.whl
  3. Fiona-1.8.13-cp37-cp37m-win_amd64.whl
  4. Shapely-1.7.0-cp37-cp37m-win_amd64.whl

Installation
1, in turn mounted directly above dependencies in cmd command line: "pip install .whl file location '
2, and then directly mounted pip geopandas:" pip the install geopandas "
. 3, verify that the installation was successful:" import geopandas "

 



Note: After installation is complete, if an error when importing geopandas package "ImportError: DLL load fialed: can not find the specified module", may be your version dependencies in question as much as possible the same version, such as python3.7 are selected cp37

 

Published 352 original articles · won praise 115 · views 130 000 +

Guess you like

Origin blog.csdn.net/Aidam_Bo/article/details/104507922