2

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.

2
  • Which OS and python version are you using? Commented Feb 24, 2020 at 14:45
  • windows 10 and python 3.7 Commented Feb 24, 2020 at 15:10

2 Answers 2

4

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

0
1

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

1
  • 1
    This user showed no understanding of docker nor is there any discussion of RAPIDS. You should request more information from the user who posted the question.
    – Jairus
    Commented May 18, 2020 at 18:31

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.