# Installation To install in development mode, clone this repository: ```Shell $ 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: ```Shell $ python3 -m venv .venv $ source .venv/bin/activate (.venv) $ pip install -r requirements.txt ``` ## Windows 10 Run in PowerShell as administrator: ```Shell $ Set-ExecutionPolicy Unrestricted ``` For **Python 3.5**, run in PowerShell as user: ```Shell $ python -m venv .venv $ .venv\Scripts\activate.ps1 (.venv) $ pip install -r requirements.txt ```