Skip to content
Open
Changes from 1 commit
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?** PyTorch doesn't ship CUDA wheels for the newest Python release right away, so the command above can't find a matching GPU build and you fall back to CPU-only torch. Use Python 3.11–3.13 for GPU support until the CUDA wheels catch up to 3.14.

Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
```python
import torch
print(f"CUDA available: {torch.cuda.is_available()}")
Expand Down