How install cuML module?

I launched this command in my jupyter notebook

pip install cuml

and I have this error:

ERROR: Could not find a version that satisfies the requirement cuml (from versions: none)
ERROR: No matching distribution found for cuml

How can I solve it?

I'm using Python 3.7 on Windows 10.

Upvotes: 2

Views: 19268

Answers (2)

carl liu
carl liu

Reputation: 86

Sorry, cuml doesn't support windows OS at the moment. But you can try it on cloud for free.

Kaggle kernels: https://www.kaggle.com/cdeotte/rapids-gpu-knn-mnist-0-97

Colab: https://colab.research.google.com/drive/1rY7Ln6rEE1pOlfSHCYOVaqt8OvDO35J0#forceEdit=true&offline=true&sandboxMode=true

Upvotes: 4

Nanthini
Nanthini

Reputation: 11

You can also use docker command to pull an image with RAPIDS library suite already installed.

Example:

docker pull rapidsai/rapidsai:cuda10.0-runtime-ubuntu16.04

docker run --runtime nvidia --rm -it -p 8888:8888 -p 8787:8787 -p 8786:8786 \
    rapidsai/rapidsai:cuda10.0-runtime-ubuntu16.04

More details: https://rapids.ai/start.html

Upvotes: 1

Related Questions