简体   繁体   中英

How do I install geopandas into miniconda?

Trying to install geopandas using:

conda install geopandas

but keep receiving the errors:

miniconda 错误图像


is there something I'm doing wrong here? can't seem to install geopandas at all.

geopandas has a ton of dependencies, so it's easy to encounter low-level conflicts when installing into an existing environment, especially when you have a mix of channels. It's best to install into a new environment, and to specify a channel, as well as to install all the packages you want to use with it at the same time, eg:

conda create -n mygeoenv -c conda-forge python=3.9 \
    geopandas xarray pandas ipython pip scipy numpy \
    matplotlib cartopy fiona holoviews rasterio

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