Skip to content Skip to sidebar Skip to footer

Can You Download Scitools Iris Package On Google Colab?

I am trying to download the SciTools Iris package in Google Colab. I first use pip install, like so: !pip install scitools-iris And then import iris with: import iris however, th

Solution 1:

I cannot reproduce this error on Google Colab. I also note that your output says "The following traceback may be corrupted or invalid". When trying to run an example, I did get an error that was something to do with numpy so upgraded that. So this is what worked for me:

!pip install scitools-iris!pip install numpy --upgrade!pip install iris-sample-data

Then I copied and pasted this gallery example, and it just worked.

Note that Iris v3.1 has now been released. I don't know if that makes a difference.

Post a Comment for "Can You Download Scitools Iris Package On Google Colab?"