Untar_data - dependencies

The untar_data function from fastai has too many dependencies. I tried many things by not able to download data with untar_data on Colab.!

Can someone help with some basic setup?

Screenshot from 2021-01-12 17-30-58|690x387

https://colab.research.google.com/drive/1vtN-6oXpMqc_vZiuP5U8N0eOLZmYnH3O?usp=sharing

The error is that the method untar_data() is not found

Try adding from fastai.vision.all import *

Yes! Silly me. It works! Thank you.

But now I am getting this error… :hot_face:

what is noops???

Add from fastcore.all import * before the fastai.vision.all import * so it looks like:

from fastcore.all import *
from fastai.vision.all import *

What is your version of fastai and fastcore

IE:

!pip show fastai

!pip show fastcore