pip install farm-ng-amigaWe 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 virtualenvClone the project:
git clone https://github.com/farm-ng/farm-ng-amiga.gitStart a virtual environment:
# assuming you're already in the farm-ng-amiga/ directory
python3 -m venv venv
source venv/bin/activateCreate and install the farm_ng\s (brain) Python package
# install to system
pip3 install .# or for development mode
pip3 install -e .[dev]