Install MemoryAgentBench via Conda and Pip
mainTo set up a reproducible environment for MemoryAgentBench, follow these steps:
Create a Conda Environment:
conda create --name MABench python=3.10.16Install Dependencies: Install PyTorch, the project requirements, and a specific version of NumPy to avoid compatibility issues:
pip install torch pip install -r requirements.txt pip install "numpy<2"
Note on Package Conflicts:
hipporagis not included inrequirements.txtdue to version conflicts. If you need it, create a separate environment.- If you encounter errors related to
cogneeorletta, try reinstalling them as follows:pip install letta pip uninstall letta pip install cognee pip uninstall cognee
conda create --name MABench python=3.10.16
pip install torch
pip install -r requirements.txt
pip install "numpy<2"