conda-forge / geopandas-feedstock

A conda-smithy repository for geopandas.
BSD 3-Clause "New" or "Revised" License
16 stars 14 forks source link

Failed to Install GeoPandas with Git/Pip/Conda #37

Closed fillipefeitosa closed 6 years ago

fillipefeitosa commented 6 years ago

As discussed on GeoPandas Repository, I could not install it using any of the methods described on the tutorial. Using Rasbian, on Raspberry Pi 3, with miniconda installed. My Objetive is to use GeoPandas on Jupyter Notebooks

Here is my output:

(jupyter) pi@raspberrypi:~ $ conda install -c conda-forge geopandas
Fetching package metadata .......

PackageNotFoundError: Package missing in current linux-armv7l channels: 
  - geopandas

Close matches found; did you mean one of these?

    geopandas: pandas, django-pandas

Any Help would be appreciated.

ocefpaf commented 6 years ago

As discussed on GeoPandas Repository

Like I mention there conda-forge does not build packages for Raspberry Pi. Unfortunately, even if we make geopandas noarch, which I believe it is possible with the current version but not the next one due to the cython parts, you would still hit the same wall with shapely and fiona (geopandas dependencies), and ultimately gdal.

@jjhelmus had a conda channel for raspeberry pi but I'm not sure if he packages geopandas there.

jjhelmus commented 6 years ago

Berryconda and the rpi channel is a collection of conda packages for the Raspberry Pi. These do not include geopandas but some of the dependency are there and could be used as a starting point if someone wanted to build out the geopandas stack.

fillipefeitosa commented 6 years ago

Thanks for all your responses.