The Agents Research Environments (ARE) can be used in two ways: via uvx for quick usage without local installation, or installed locally for development and custom scenarios.
For users who want to dig deeper into the library, develop custom scenarios, or need local access to the codebase, you can install it with pip.
the Agents Research Environments requires python 3.10.*. We recommend using a virtual environment for installation. Using uv venv -p 3.10 and uv pip install or uv add is the recommended approach.
pipinstallmeta-agents-research-environments
This will install the Agents Research Environments package and all its dependencies, including the pre-built JavaScript UI components.
If you want to start the UI locally or modify the web interface, you’ll also need to build the JavaScript components from source.
First, install NodeJS version 23 on your system, then run:
# On Linux/MacOSBUILD_GUI=1uvpipinstall-e.
# On WindowssetBUILD_GUI=1&uvpipinstall-e.
This will compile the JavaScript UI components during installation, which takes a few additional minutes but gives you full control over the web interface development.