Installing and managing requirements with venv
-
Create a new virtual environment (.venv) (Only required for the first time)
$ python3 -m venv .venv
1.1. Install the required python packages
pip install -r requirements.txt
-
Activate the virtual environment
$ source .venv/bin/activate
Steps to run the IBI
-
Install Docker and its dependencies.
-
Clone the project and cd into the directory of the project, then run:
sudo docker build -t ibi_horse .
-
After the build, run:
sudo docker run --network host ibi_horse