Issue loading data from lesson 4 Collab

Currently have issues when trying to run this cell in Lesson 4 Collab nb

ratings = pd.read_csv(path/'u.data', delimiter='\t', header=None,
                      names=[user,item,'rating','timestamp'])
ratings.head()

I am getting this error:

FileNotFoundError: [Errno 2] File /home/jupyter/.fastai/data/ml-100k/u.data does not exist: '/home/jupyter/.fastai/data/ml-100k/u.data'

I already updated the fastai library using this command

sudo /opt/conda/bin/conda install -c fastai fastai

Notebook instance is the recommended one from GCP. Not sure what I need to do to be able to upload that data.

Weird.
Are you correctly running path = untar_data(URLs.ML_100k)?

Yes, I just tried that and it’s still not working. I am getting this error:

AttributeError: type object 'URLs' has no attribute 'ML_100k'

This one was in the script before:

path=Config.data_path()/'ml-100k'

but it doesn’t work niether. I don’t know if this might help:

Try reinstalling the library from scratch following these instructions https://dev.fast.ai/#Installing