Skip to content
Merged
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
5 changes: 4 additions & 1 deletion examples/droid/README_train.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ for larger datasets like DROID -- they are working on improving it though). Belo

## Install

We need a few additional dependencies for RLDS data loading. Run:
We need a few additional dependencies for RLDS data loading. The RLDS group depends on `tensorflow-cpu==2.15.0`, which only ships wheels for **Python 3.11**. Make sure you create your virtual environment with Python 3.11 before syncing:

```bash
uv python install 3.11
uv venv --python 3.11
uv sync --group rlds
```

Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ dev = [
"pynvml>=12.0.0",
]
rlds = [
# NOTE: tensorflow-cpu 2.15.0 only ships cp311 wheels on PyPI.
# Use `uv venv --python 3.11` before `uv sync --group rlds`.
"dlimp",
"tensorflow-cpu==2.15.0",
"tensorflow-datasets==4.9.9",
Expand Down
Loading