Installation

Requirements

  • A Linux based system
  • Python 3.4
  • Pip
  • Virtualenv

The dependancies can be installed on Debian systems with apt:

apt-get install python3 python3-pip virtualenv

Production Mode

The project can be installed directly into the environment in a non editable way. To allow editing of the project see development mode below.

Note

The source file can still be edited from there installation directory but this is not recommended

Pip Installation

The system can be installed using pip direct from the github repo:

pip install git+git://github.com/lsucs/pylanauth

Manaul Installation

Clone the git repo onto the target machine:

git clone https://github.com/lsucs/

Development Mode

In development mode, only the projects dependencies will be installed. A module link to the local source code will be generated by the installer, so changes make to the source will be reflected when running the project.

Clone the git repo onto the target machine:

git clone https://github.com/lsucs/pylanauth

Install the projects python dependancies:

python3 setup.py develop