Installation

Install this library in a virtual environment using venv. venv is a tool that creates isolated Python environments. These isolated environments can have separate versions of Python packages, which allows you to isolate one project’s dependencies from the dependencies of other projects.

With venv, it’s possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.

Mac/Linux

python3 -m venv <your-env>
source <your-env>/bin/activate
pip install gpxtable

Windows

py -m venv <your-env>
.\<your-env>\Scripts\activate
pip install gpxtable[web]

Also included in the package is an optional web service component using wsgi. If you are comfortable with WSGI services and wish to play with this service, substitute gpxtable above with “gpxtable[web]” when installing with PIP.