Installation
From PyPI
Create a virtual environment to keep the Python packages separate from system packages and other local environments:
$ python -m venv .venv
Activate the environment:
$ source .venv/bin/activate
Install the dependencies:
$ pip install Fargonaut
From source
The only requirements for installing Fargonaut are Git and Python.
Assuming you have these installed, first, clone the repository:
$ git clone https://github.com/dc2917/Fargonaut
Create a virtual environment to keep the Python packages separate from system packages and other local environments:
$ cd Fargonaut
$ python -m venv .venv
Activate the environment:
$ source .venv/bin/activate
Install the dependencies:
$ pip install -r requirements.txt