Installation

The tool has been developed to work on Windows, Linux and MacOS.

Please make sure Python 3.6 is installed and set at your path; it can be installed from the Python release pages, selecting the relevant installer for your operating system. When prompted, please check the box to set the paths and environment variables for you and you should be ready to go. Python can also be installed as part of Anaconda.

To check the Python version default for your system, run the following in command line/terminal:

1
2
# Bash
python --version

Note: If Python 2 is the default Python version, but if you have installed Python 3.6, your path may be setup to use python3 instead of python.

To install the packages and dependencies for the tool, from the root directory (green-spaces) run:

1
2
# Bash
pip install -e .

This will install all the libraries for you.

To execute the unit tests run:

1
2
# Python
python setup.py test

This will download any required test packages and then run the tests.

Edit on GitHub