rapidsai / docs

RAPIDS Documentation Site
https://docs.rapids.ai
37 stars 52 forks source link

[BUG] Missing quotes on RAPIDS Install Selector Tool #555

Closed sarahyurick closed 1 month ago

sarahyurick commented 1 month ago

Describe the bug On the RAPIDS Install Selector Tool, when I select Nightly (24.12a) and pip, the command

pip install \
    --extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/simple \
    "cudf-cu12>=24.12.0a0,<=24.12" "dask-cudf-cu12>=24.12.0a0,<=24.12" \
    "cuml-cu12>=24.12.0a0,<=24.12" cugraph-cu12>=24.12.0a0,<=24.12" \
    nx-cugraph-cu12>=24.12.0a0,<=24.12" "cuspatial-cu12>=24.12.0a0,<=24.12" \
    "cuproj-cu12>=24.12.0a0,<=24.12" "cuxfilter-cu12>=24.12.0a0,<=24.12" \
    "cucim-cu12>=24.12.0a0,<=24.12" "pylibraft-cu12>=24.12.0a0,<=24.12" \
    "raft-dask-cu12>=24.12.0a0,<=24.12" "cuvs-cu12>=24.12.0a0,<=24.12" \
    "pylibraft-cu12>=24.12.0a0,<=24.12" "nx-cugraph-cu12>=24.12.0a0,<=24.12" \
    "dask-cuda>=24.12.0a0,<=24.12"

is missing start quotes for cugraph-cu12 and nx-cugraph-cu12.

Expected behavior The command should be

pip install \
    --extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/simple \
    "cudf-cu12>=24.12.0a0,<=24.12" "dask-cudf-cu12>=24.12.0a0,<=24.12" \
    "cuml-cu12>=24.12.0a0,<=24.12" "cugraph-cu12>=24.12.0a0,<=24.12" \
    "nx-cugraph-cu12>=24.12.0a0,<=24.12" "cuspatial-cu12>=24.12.0a0,<=24.12" \
    "cuproj-cu12>=24.12.0a0,<=24.12" "cuxfilter-cu12>=24.12.0a0,<=24.12" \
    "cucim-cu12>=24.12.0a0,<=24.12" "pylibraft-cu12>=24.12.0a0,<=24.12" \
    "raft-dask-cu12>=24.12.0a0,<=24.12" "cuvs-cu12>=24.12.0a0,<=24.12" \
    "pylibraft-cu12>=24.12.0a0,<=24.12" "nx-cugraph-cu12>=24.12.0a0,<=24.12" \
    "dask-cuda>=24.12.0a0,<=24.12"

Desktop (please complete the following information):

bdice commented 1 month ago

I think this line is missing some quotes. It needs a \" before cugraph and nx-cugraph. https://github.com/rapidsai/docs/blob/160e84a424dbe9b2944430e4e54ba7cdafcdd3fe/_includes/selector.html#L565