ozak / georasters

GeoRasters is a Python module that provides a fast and flexible tool to work with GIS raster files.
GNU General Public License v3.0
198 stars 36 forks source link

Error installing with pip on google colab #61

Closed WHBSpeiser closed 4 years ago

WHBSpeiser commented 4 years ago

Hi!

I have been trying to use georasters on Google Colab but every time I try to install it I get the error: "ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output."

Any suggestions?

Thanks!

ozak commented 4 years ago

Did you resolve the issue? can you share what happened?

WHBSpeiser commented 4 years ago

Yes! Sorry. Google colabs has an issue downloading rtrees which was creating an error with the pip install of georasters. The fix is to download rtrees separately before installing georasters via:

!apt install libspatialindex-dev !pip install rtree

ozak commented 4 years ago

Good tip!