From aba34fdaec3fd0be051e1ab466f7d2b64b5f7b43 Mon Sep 17 00:00:00 2001 From: Ashwin Srinath <3190405+shwina@users.noreply.github.com> Date: Fri, 19 Jan 2024 12:25:48 -0500 Subject: [PATCH] Add pip install instructions to README (#13677) This PR adds pip installation instructions to the README. Authors: - Ashwin Srinath (https://github.com/shwina) - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Bradley Dice (https://github.com/bdice) URL: https://github.com/rapidsai/cudf/pull/13677 --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 996e5ff4800..0cf168123cf 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,10 @@ print(tips_df.groupby("size").tip_percentage.mean()) - [libcudf (C++/CUDA) documentation](https://docs.rapids.ai/api/libcudf/stable/) - [RAPIDS Community](https://rapids.ai/learn-more/#get-involved): Get help, contribute, and collaborate. +See the [RAPIDS install page](https://docs.rapids.ai/install) for +the most up-to-date information and commands for installing cuDF +and other RAPIDS packages. + ## Installation ### CUDA/GPU requirements @@ -64,6 +68,24 @@ print(tips_df.groupby("size").tip_percentage.mean()) * NVIDIA driver 450.80.02+ * Volta architecture or better (Compute Capability >=7.0) +### Pip + +cuDF can be installed via `pip` from the NVIDIA Python Package Index. +Be sure to select the appropriate cuDF package depending +on the major version of CUDA available in your environment: + +For CUDA 11.x: + +```bash +pip install --extra-index-url=https://pypi.nvidia.com cudf-cu11 +``` + +For CUDA 12.x: + +```bash +pip install --extra-index-url=https://pypi.nvidia.com cudf-cu12 +``` + ### Conda cuDF can be installed with conda (via [miniconda](https://docs.conda.io/projects/miniconda/en/latest/) or the full [Anaconda distribution](https://www.anaconda.com/download) from the `rapidsai` channel: