GeoTile Installation

Conda Installation

The easy and best way to install the GeoTile library is using conda distribution,

conda install -c conda-forge geotile

Pip Installation

To install the package with pip installation, you have to install its dependencies first. Following packages are the dependencies of GeoTile:

Windows Pip Installation

In windows, the dependencies can be install using pipwin command,

pip install pipwin
pipwin install gdal numpy geopandas rasterio

Now you can install the library using pip install command,

pip install geotile

Linux Installation

In Debian/Ubuntu, the dependencies can be install using apt-get command,

sudo add-apt-repository ppa:ubuntugis/ppa
sudo apt update -y; sudo apt upgrade -y;
sudo apt install gdal-bin libgdal-dev
pip3 install pygdal=="`gdal-config --version`.*"

More Instruction for Dependencies Installation

The following links are the instructions for installing the dependencies of GeoTile:

  1. GeoPandas installation

  2. Rasterio Installation