To run in local mode you first be sure that you have docker tools installed. On Debian systems:
apt install dockerTo get started, run the setup command with the dataset
split that you are interested in working with.
We'll start with the lite split.
commit0 setup liteThis will install a clone the code for subset of libraries to your repos/ directory.
Next run the build command which will configure Docker containers for
each of the libraries with isolated virtual environments. The command uses the
uv library for efficient builds.
commit0 buildThe main operation you can do with these enviroments is to run tests.
Here we run a test in the simpy library.
commit0 test simpy tests/test_event.py::test_succeedSee distributed setup for more commands.