Installation
Prerequisites
In the source code, we tested with Python 3.10.0, but it should work with any version of Python 3.10.x or higher.
Installation
Set up the project environment using one of the methods below: Conda or pip.
Using Conda
Create a Conda Environment
conda create -n eternalai_agents python=3.10.0
Activate the Conda Environment:
conda activate eternalai_agents
Install Dependencies:
Navigate to the project directory and run:
pip install -r requirements.txt
Using pip
If you prefer to use Pip without Conda, simply navigate to the project directory and run:
pip install -r requirements.txt
Last updated