简体   繁体   English

为 Windows 10 安装 Geopandas

[英]Installation of Geopandas for Windows 10

There are some problems about geopandas installation for Windows 10 system. Windows 10 系统的 geopandas 安装存在一些问题。 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:导航到您的 cmd 终端并尝试:

conda install geopandas 

Alternatively you can grab the install and all dependencies from the forge:或者,您可以从 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.我遵循了很多程序,下载轮文件并手动安装,但创建环境然后安装(使用 Anaconda)使它更容易。

I have followed this from https://geopandas.org/getting_started/install.html我从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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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