Hi @butlerbt,
Could you double-check the full printout from !pip install solaris? If you’re installing onto a fresh Colab instance, you may be running into an error like the below while trying to install the gdal>=3.0.2 dependency:
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
This popped up recently with the most recent version of solaris (0.2.1) requiring gdal 3 which can be temperamental to install.
The following should work (by adding the ubuntugis-unstable packages which includes gdal 3.0.2):
!add-apt-repository ppa:ubuntugis/ubuntugis-unstable -y
!apt-get update
!apt-get install python-numpy gdal-bin libgdal-dev python3-rtree
!pip install solaris
Or if you prefer the stable ubuntugis packages, you could install an older version of solaris for now:
!add-apt-repository ppa:ubuntugis/ppa -y
!apt-get update
!apt-get install python-numpy gdal-bin libgdal-dev python3-rtree
!pip install solaris==0.2.0