rapidsai / cudf

cuDF - GPU DataFrame Library
https://docs.rapids.ai/api/cudf/stable/
Apache License 2.0
8.24k stars 884 forks source link

[BUG]cannot pip install on linux (Ubuntu) #16557

Closed SHIMURA0 closed 2 weeks ago

SHIMURA0 commented 4 weeks ago

Describe the bug I am trying to install cuff on linux (Ubuntu) server using the command pip install --extra-index-url=https://pypi.nvidia.com cudf-cu12 but at the very end of the installing I have the following error: 221723625460_ pic I will be grateful if someone can help me to resolve this issue.

Linux server: Ubuntu 20.04 Python conda environment: python=3.10 Nvidia GPU = V100 CUDA 12.1

Steps/Code to reproduce bug Follow this guide http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports to craft a minimal bug report. This helps us reproduce the issue you're having and resolve the issue more quickly.

Expected behavior A clear and concise description of what you expected to happen.

Environment overview (please complete the following information)

Environment details Please run and paste the output of the cudf/print_env.sh script here, to gather any other relevant environment details

Additional context Add any other context about the problem here.

bdice commented 4 weeks ago

It looks like this is trying to install 23.12, an old release. Can you try to install the latest release? We have improved the error reporting and it should give us more debugging info even if it fails to install.

pip install --extra-index-url=https://pypi.nvidia.com cudf-cu12==24.8.*

SHIMURA0 commented 4 weeks ago

I am so grateful! It works!

It looks like this is trying to install 23.12, an old release. Can you try to install the latest release? We have improved the error reporting and it should give us more debugging info even if it fails to install.

pip install --extra-index-url=https://pypi.nvidia.com cudf-cu12==24.8.*

SHIMURA0 commented 4 weeks ago

Another question, I wonder how to install and use desk_cudf, I find that repository has been moved to CUDF.

bdice commented 4 weeks ago

The installation guide shows how to get all of RAPIDS. Try this: https://docs.rapids.ai/install

This command installs all RAPIDS packages.

pip install \
    --extra-index-url=https://pypi.nvidia.com \
    cudf-cu12==24.8.* dask-cudf-cu12==24.8.* cuml-cu12==24.8.* \
    cugraph-cu12==24.8.* cuspatial-cu12==24.8.* cuproj-cu12==24.8.* \
    cuxfilter-cu12==24.8.* cucim-cu12==24.8.* pylibraft-cu12==24.8.* \
    raft-dask-cu12==24.8.* cuvs-cu12==24.8.*
vyasr commented 2 weeks ago

Closing as resolved. Please feel free to reopen if needed.