I've encountered this error, please help me out

Is your internet connection enabled?

Thank you very much for replying, Do I need to compulsorily verify my mobile number to enable the internet connection?

On the right side of the kernels window, there should be a settings section:

image

You’re gonna want GPU turned on and internet connection turned on.

Got it.Thank you, It’s working:slightly_smiling_face:

I am encountering the same error when trying to run lesson 1 on Kaggle. My internet connection and GPU are both enabled.

path = untar_data(URLs.PETS)

ConnectionError: HTTPSConnectionPool(host='s3.amazonaws.com', port=443): Max retries exceeded with url: /fast-ai-imageclas/oxford-iiit-pet.tgz (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x7f7ebcf56198>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))

Does anybody have suggestions?

I also meet this. I solved it by hand.

# the download data dir of fastai is ~/.fastai/data/ 
cd ~/.fastai/data/ 
wget http://files.fast.ai/data/examples/imdb_sample.tgz

after download data, then rerun the notebook
I succeeded in this way, you can also try it. However, it is just a trick.

1 Like