Installation

Stable release

To install AutoFLpy, run this command in your terminal:

$ pip install autoflpy

This is the preferred method to install AutoFLpy, as it will always install the most recent stable release.

If you don’t have pip installed, this Python installation guide can guide you through the process.

From sources

The sources for AutoFLpy can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/AdrianWeishaeupl/autoflpy

Or download the tarball:

$ curl -OJL https://github.com/AdrianWeishaeupl/autoflpy/tarball/master

Once you have a copy of the source, you can install it with:

$ python setup.py install

Installing geopandas and contextily for map plotting

The easiest way to install geopandas was found to be:

$ conda install --channel conda-forge geopandas

alternate ways can be found under the following link: http://geopandas.org/install.html

The easiest way to install contextily was found to be:

$ conda install contextily --channel conda-forge

alternate ways can be found under the following link: https://stackoverflow.com/questions/54149384/how-to-install-contextily