Skip to content

Commit 664bd7d

Browse files
committed
docs. update documentation
Signed-off-by: Christoph Auer <cau@zurich.ibm.com>
1 parent edb620b commit 664bd7d

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

docs/getting_started/installation.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ the following engines.
6868
| Engine | Installation | Usage |
6969
| ------ | ------------ | ----- |
7070
| [EasyOCR](https://github.com/JaidedAI/EasyOCR) | `easyocr` extra or via `pip install easyocr`. | `EasyOcrOptions` |
71-
| [Nemotron OCR](https://huggingface.co/nvidia/nemotron-ocr-v1) | `nemotron-ocr` extra. Supported only on Linux x86_64 with Python 3.12 and CUDA 13.x. | `NemotronOcrOptions` |
71+
| [Nemotron OCR](https://huggingface.co/nvidia/nemotron-ocr-v1) | `nemotron-ocr` extra. Supported only on Linux x86_64 with Python 3.12 and CUDA 13.x. See installation note below. | `NemotronOcrOptions` |
7272
| Tesseract | System dependency. See description for Tesseract and Tesserocr below. | `TesseractOcrOptions` |
7373
| Tesseract CLI | System dependency. See description below. | `TesseractCliOcrOptions` |
7474
| OcrMac | System dependency. See description below. | `OcrMacOptions` |
@@ -138,6 +138,20 @@ doc_converter = DocumentConverter(
138138
pip install --no-binary :all: tesserocr
139139
```
140140

141+
??? "Nemotron OCR installation"
142+
143+
[Nemotron OCR](https://huggingface.co/nvidia/nemotron-ocr-v1) requires the CUDA 13 PyTorch wheels.
144+
Install it with the `nemotron-ocr` extra, the CUDA 13 PyTorch index, and the `unsafe-best-match`
145+
index strategy so `pip` resolves the CUDA-enabled `torch` packages correctly.
146+
147+
```console
148+
pip install "docling[nemotron-ocr]" \
149+
--extra-index-url https://download.pytorch.org/whl/cu130 \
150+
--index-strategy unsafe-best-match
151+
```
152+
153+
Nemotron OCR is currently supported only on Linux x86_64 with Python 3.12 and CUDA 13.x.
154+
141155
## Development setup
142156

143157
To develop Docling features, bugfixes etc., install as follows from your local clone's root dir:

0 commit comments

Comments
 (0)