mkdirmyproject&&cdmyproject
uvvenv--python3.12
source.venv/bin/activate
# install everything (depending on your use case you might not need all extras,# check your respective platform guides)uvpipinstall'dimos[misc,sim,visualization,agents,web,perception,unitree,manipulation,cpu]'
# this allows getting large files on-demand (and not pulling all immediately)exportGIT_LFS_SKIP_SMUDGE=1gitclonehttps://github.com/dimensionalOS/dimos.git
cddimos
# Install all dependency groups (tests, lint, …) so mypy + pytest are# both available. For self-hosted tests, see docs/development/testing.md.uvsync--all-groups
# type checkuvrunmypydimos
# tests (around a minute to run)uvrunpytest--numprocesses=autodimos