Ekrem Erkuş
Ekrem Erkuş

Reputation: 29

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?

enter image description here

enter image description here

enter image description here

Upvotes: 2

Views: 143

Answers (2)

TANYA PATEL
TANYA PATEL

Reputation: 11

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

Upvotes: 1

Piid
Piid

Reputation: 26

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

Upvotes: 1

Related Questions