Skip to content

farm-ng/farm-ng-amiga

Repository files navigation

farm-ng-amiga

PyPI version

Install

From pip

pip install farm-ng-amiga

From source

We recommend running the brain SDK applications in a virtual environment to avoid conflicts with other packages / versions installed on your system. Though this is not a requirement and you are welcome to decide how/where to install.

Install pip3 & virtualenv:

sudo apt-get install python3-pip
sudo pip3 install virtualenv

Clone the project:

git clone https://github.com/farm-ng/farm-ng-amiga.git

Start a virtual environment:

# assuming you're already in the farm-ng-amiga/ directory
python3 -m venv venv
source venv/bin/activate

Create and install the farm_ng\s (brain) Python package

# install to system
pip3 install .
# or for development mode
pip3 install -e .[dev]