Skip to content
Open
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
2 changes: 2 additions & 0 deletions phases/00-setup-and-tooling/01-dev-environment/docs/en.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ nvidia-smi
uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
```

> **On Python 3.14?** The `cu124` index above doesn't have 3.14 wheels, so the install falls back to CPU-only torch. The newer CUDA builds do ship 3.14 wheels — use `--index-url https://download.pytorch.org/whl/cu128` (or `cu126`) instead. If you'd rather stay on `cu124`, use Python 3.11–3.13.

```python
import torch
print(f"CUDA available: {torch.cuda.is_available()}")
Expand Down