-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pinning cudf version to 0.10 #159
Conversation
With the latest commits, users can now specify a rapids-nightly version argument in the "header" cell. For instance, to install RAPIDS 0.9 nightlies:
By default (if no argument is given), the 0.10 nightly packages will be installed. |
This resolves #149 Warnings
|
Unfortunately this is an artifact of using the only version of miniconda (an outdated one) that works with the version of Python used by Colab. I searched but couldn't find a way to disable the warning during install of miniconda itself. If you can figure out how to, please do let us know. |
read_csv erroroccurs when installation is done via proposed script
input
output
Old install script being used
to reproduceNotebook being run is WIP colab #148
install script being used
|
This PR is updating https://github.com/rapidsai/notebooks-contrib/raw/master/utils/rapids-colab.sh, so you'll not be able to test using that same URL until this PR merges. The way I tested was with the URL for my fork: https://github.com/randerzander/notebooks-contrib/raw/master/utils/rapids-colab.sh |
Awesome, was hoping this was the case. Thanks. |
Pinning cudf version to 0.10
Due to the many existing pip packages installed by default in Colab, if you try to
conda install -c rapidsai-nightly cudf
conda will likely install an older version of cudf.Explicitly passing
cudf=0.10
fixes that and will result in installing the latest nightly for the rest of the RAPIDS packages as well.