rapidsai / rapids.ai

rapids.ai web site
https://rapids.ai
9 stars 20 forks source link

Updates for v23.12 release #349

Closed raydouglass closed 10 months ago

raydouglass commented 10 months ago

Updates for v23.12 release

Also adds back the announcements for release & Pascal deprecation.

Depends on rapidsai/docs#461

raydouglass commented 10 months ago

Should the pip install commands specify the version like the conda commands do?

Asked here as well.

bdice commented 10 months ago

Should the pip install commands specify the version like the conda commands do?

Currently it says

pip install cudf-cu11 dask-cudf-cu11 --extra-index-url=https://pypi.nvidia.com
  pip install cuml-cu11 --extra-index-url=https://pypi.nvidia.com
  pip install cugraph-cu11 --extra-index-url=https://pypi.nvidia.com

I would prefer to:

pip install cudf-cu12==23.12.* dask-cudf-cu12==23.12.* cuml-cu12==23.12.* cugraph-cu12==23.12.* --extra-index-url=https://pypi.nvidia.com

I think this looks fine when rendered, too: image

bdice commented 10 months ago

Or alternatively we can make the "short pip install" look more like the install selector:

pip install \
  --extra-index-url=https://pypi.nvidia.com \
  cudf-cu12==23.12.* \
  dask-cudf-cu12==23.12.* \
  cuml-cu12==23.12.* \
  cugraph-cu12==23.12.*
raydouglass commented 10 months ago

Or alternatively we can make the "short pip install" look more like the install selector:

I like this. I've pushed a commit to add that.