简体   繁体   中英

Installation of Geopandas for Windows 10

There are some problems about geopandas installation for Windows 10 system. You know that this module is including some dependencies into widerange. In this mean, I presented as snapshots my system responses with this dependencies as a summary.

What is the problem?

在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

The error just says it cannot find the file it needs in your Environment Path. Navigate to your cmd terminal and try:

conda install geopandas 

Alternatively you can grab the install and all dependencies from the forge:

conda install --channel conda-forge geopandas

It gets easy when you create new environment for it, then start installing. I had followed a lot procedure, downloading wheel files and installing manually but creating the environment and then installing (using Anaconda) make it lot easier.

I have followed this from https://geopandas.org/getting_started/install.html

enter image description here

conda create -n geo_env
conda activate geo_env
conda config --env --add channels conda-forge
conda config --env --set channel_priority strict
conda install python=3 geopandas

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM