Skip to content

Commit

Permalink
Update pip-install.py
Browse files Browse the repository at this point in the history
  • Loading branch information
taureandyernv authored Dec 17, 2024
1 parent ec884a2 commit fa088ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions colab/pip-install.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
)
gpu_name = pynvml.nvmlDeviceGetName(pynvml.nvmlDeviceGetHandleByIndex(0))

LATEST_RAPIDS_VERSION = "24.10"
NIGHTLY_RAPIDS_VERSION = "24.12"
LATEST_RAPIDS_VERSION = "24.12"
NIGHTLY_RAPIDS_VERSION = "25.02"

if(len(sys.argv)>=2):
if(len(sys.argv[1])=="legacy"):
rapids_version = "24.8.*"
rapids_version = "24.10.*"
print("Installing the rest of the RAPIDS " + rapids_version + " libraries")
output = subprocess.Popen([f"pip install cudf-cu12=={rapids_version} cuml-cu12=={rapids_version} cugraph-cu12=={rapids_version} cuspatial-cu12=={rapids_version} cuproj-cu12=={rapids_version} cuxfilter-cu12=={rapids_version} cucim-cu12=={rapids_version} pylibraft-cu12=={rapids_version} raft-dask-cu12=={rapids_version} nx-cugraph-cu12=={rapids_version} aiohttp --extra-index-url=https://pypi.nvidia.com"], shell=True, stderr=subprocess.STDOUT,
stdout=subprocess.PIPE)
Expand Down

0 comments on commit fa088ab

Please sign in to comment.