I currently a data science undergraduate student and try to use google could platform - AI platform - notebook instance to do data science project. The following image shows what I am talking about.
I have no problem running the instance and use it to manipulate the data. However, since I want to use cudf library to accelerate the data processing speed, I need to install that library. By searching from internet, I have tried: First, I opened the terminal:
then I tried the following command and got the errors:
the command is from this website 2.Then I tried use the anaconda way to install it, use the method from the same websiteI type in the following command in the terminal and got the 'UnsatisfiableError'.
From the above, you can see I have tried both 10.0 version and 9.42 version, but both of them does not work.
3. Then I also tried use the method from this website. I typed the following command conda install -c nvidia -c rapidsai -c numba -c conda-forge -c defaults cudf=0.8 python=3.6 cudatoolkit=9.2
on the terminal, the result is very long so I just show last part:
As you can see, this time the installation is successful. But then when I open a new note book and import the 'cudf' library following error appears:
it said there is no such library, but I just installed the library.
I am really appreciate anyone who could solve this problem for me as I have been struggling on this for 7 hours.