Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install titiler via python pip




titiler - A modern dynamic tile server built on top of FastAPI and Rasterio/GDAL., it belongs to Classifiers:

- Intended Audience :: Information Technology

When you know about this project and you want to new install titiler to support your project or you get trouble as ModuleNotFoundError: No module named "titiler" or ImportError: cannot import name "titiler" in your project, let follow this tutorial to install titiler



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_titiler_env

- Active the virtual environment

test_titiler_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_titiler_env

- Active the virtual environment

source test_titiler_env/bin/active


Step 2: OK, now, let flow below content to start the installation titiler

To install titiler on Windows(CMD):

py -m pip install titiler

To install titiler on Unix/macOs:

pip install titiler


Step 3: If you want to install a specific titiler version, add ==<titiler version> to the end command line

Example:

pip install titiler==0.1a0                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
titiler 0.7.02022-06-09T16:30:39Windows:

py -m pip install titiler==0.7.0

Unix/macOs:

pip install titiler==0.7.0

titiler 0.6.02022-05-13T09:49:59Windows:

py -m pip install titiler==0.6.0

Unix/macOs:

pip install titiler==0.6.0

titiler 0.5.12022-03-07T08:11:49Windows:

py -m pip install titiler==0.5.1

Unix/macOs:

pip install titiler==0.5.1

titiler 0.5.02022-02-22T12:49:51Windows:

py -m pip install titiler==0.5.0

Unix/macOs:

pip install titiler==0.5.0

titiler 0.4.32022-02-07T23:18:35Windows:

py -m pip install titiler==0.4.3

Unix/macOs:

pip install titiler==0.4.3

titiler 0.4.22022-01-25T10:49:40Windows:

py -m pip install titiler==0.4.2

Unix/macOs:

pip install titiler==0.4.2

titiler 0.4.12022-01-25T09:35:33Windows:

py -m pip install titiler==0.4.1

Unix/macOs:

pip install titiler==0.4.1

titiler 0.4.02021-11-30T17:47:27Windows:

py -m pip install titiler==0.4.0

Unix/macOs:

pip install titiler==0.4.0

titiler 0.3.122021-10-20T20:50:23Windows:

py -m pip install titiler==0.3.12

Unix/macOs:

pip install titiler==0.3.12

titiler 0.3.112021-10-07T11:20:59Windows:

py -m pip install titiler==0.3.11

Unix/macOs:

pip install titiler==0.3.11

titiler 0.3.102021-09-23T08:32:58Windows:

py -m pip install titiler==0.3.10

Unix/macOs:

pip install titiler==0.3.10

titiler 0.3.92021-09-07T15:49:01Windows:

py -m pip install titiler==0.3.9

Unix/macOs:

pip install titiler==0.3.9

titiler 0.3.82021-09-02T09:43:43Windows:

py -m pip install titiler==0.3.8

Unix/macOs:

pip install titiler==0.3.8

titiler 0.3.72021-09-01T06:45:05Windows:

py -m pip install titiler==0.3.7

Unix/macOs:

pip install titiler==0.3.7

titiler 0.3.62021-08-23T11:32:18Windows:

py -m pip install titiler==0.3.6

Unix/macOs:

pip install titiler==0.3.6

titiler 0.3.52021-08-17T09:56:11Windows:

py -m pip install titiler==0.3.5

Unix/macOs:

pip install titiler==0.3.5

titiler 0.3.22021-05-26T19:24:41Windows:

py -m pip install titiler==0.3.2

Unix/macOs:

pip install titiler==0.3.2

titiler 0.3.12021-04-27T19:37:54Windows:

py -m pip install titiler==0.3.1

Unix/macOs:

pip install titiler==0.3.1

titiler 0.3.02021-04-20T00:21:19Windows:

py -m pip install titiler==0.3.0

Unix/macOs:

pip install titiler==0.3.0

titiler 0.2.02021-03-09T20:59:50Windows:

py -m pip install titiler==0.2.0

Unix/macOs:

pip install titiler==0.2.0

titiler 0.1.02021-02-17T18:08:45Windows:

py -m pip install titiler==0.1.0

Unix/macOs:

pip install titiler==0.1.0


Step 4: Otherwise, you can install titiler from local archives:

Download the distribution file from titiler-0.7.0.tar.gz or the specific titiler version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_titiler_downloaded_file>

On Unix/macOs:

pip install <path_to_titiler_downloaded_file>


List distribution:


Project link:

- Homepage