Update installation instructions for cuML with BERTopic. #2446
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Updates cuML installation instructions across the documentation to use simplified PyPI.org installation (available as of cuML 25.10) with current CUDA versions.
Changes
Updated Installation Instructions
Updated cuML + BERTopic installation instructions in three documentation files:
docs/getting_started/clustering/clustering.mddocs/getting_started/dim_reduction/dim_reduction.mddocs/getting_started/tips_and_tricks/tips_and_tricks.mdKey Updates
--extra-index-urlflagsMotivation
The updated instructions use pip install from PyPI.org, which is now possible as of cuML release version 25.10. This simplifies the installation process by removing the need for additional package indexes (
--extra-index-url) and auxiliary packages (cudf, dask-cudf, cugraph, cupy).Additionally, the two-step installation approach (install cuML first, then BERTopic) avoids pip resolver limitations when handling conflicting CUDA runtime dependencies between cuML and PyTorch (via sentence-transformers).
Before submitting