Rajarshi1
(Rajarshi Ghoshal)
#1
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 *
Rajarshi1
(Rajarshi Ghoshal)
#3
Yes! Silly me. It works! Thank you.
Rajarshi1
(Rajarshi Ghoshal)
#4
But now I am getting this error… 
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 *
muellerzr
(Zachary Mueller)
#6
What is your version of fastai and fastcore
IE:
!pip show fastai
!pip show fastcore