Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 41 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,47 @@ Option 1: Install in a virtualenv

```sh

uv venv && . .venv/bin/activate
uv pip install 'dimos[base,unitree]'
# replay recorded data to test that the system is working
# IMPORTANT: First replay run will show a black rerun window while 2.4 GB downloads from LFS
# Clone the repository
git clone --branch dev --single-branch https://github.com/dimensionalOS/dimos.git
cd dimos

# Create and activate virtual environment
python3 -m venv venv
source venv/bin/activate

sudo apt install portaudio19-dev python3-pyaudio

# Install LFS
sudo apt install git-lfs
git lfs install

# Install torch and torchvision if not already installed
# Example CUDA 11.7, Pytorch 2.0.1 (replace with your required pytorch version if different)
pip install torch==2.0.1 torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
```

#### Install dependencies
```bash
# CPU only (reccomended to attempt first)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

reccomended is misspelled

Suggested change
# CPU only (reccomended to attempt first)
# CPU only (recommended to attempt first)

uv sync --extra cpu --extra dev

# CUDA install
uv sync --extra cuda --extra dev

# Jetson Jetpack 6.2 (Python 3.10 only)
uv sync --extra jetson-jp6-cuda126 --extra dev

# Copy and configure environment variables
cp default.env .env
```

#### Test the install
```bash
pytest -s dimos/
```

#### Test Dimensional with a replay UnitreeGo2 stream (no robot required)
```bash
dimos --replay run unitree-go2
```

Expand Down
Loading
Loading