Installation¶
To install in development mode, clone this repository:
$ git clone $REMOTE ~/git/faff
$ cd ~/git/faff
Further instructions for setting up the virtual environment under different operating systems and versions of Python are listed below.
Ubuntu 16.04¶
For Python 3.5, run in Terminal:
$ python3 -m venv .venv
$ source .venv/bin/activate
(.venv) $ pip install -r requirements.txt
Windows 10¶
Run in PowerShell as administrator:
$ Set-ExecutionPolicy Unrestricted
For Python 3.5, run in PowerShell as user:
$ python -m venv .venv
$ .venv\Scripts\activate.ps1
(.venv) $ pip install -r requirements.txt