lmoroney / dlaicourse

Notebooks for learning deep learning
5.67k stars 5.36k forks source link

Course 2- Excercise_1_Cats_vs_Dogs, "wget not found" #177

Closed Kamlesh364 closed 3 years ago

Kamlesh364 commented 3 years ago

while running the 2nd cell it shows the issue attached below-

/bin/sh: 1: wget: not found

FileNotFoundError Traceback (most recent call last)

in 2 3 local_zip = '/tmp/cats-and-dogs.zip' ----> 4 zip_ref = zipfile.ZipFile(local_zip, 'r') 5 zip_ref.extractall('/tmp') 6 zip_ref.close() /usr/lib/python3.6/zipfile.py in __init__(self, file, mode, compression, allowZip64) 1111 while True: 1112 try: -> 1113 self.fp = io.open(file, filemode) 1114 except OSError: 1115 if filemode in modeDict: FileNotFoundError: [Errno 2] No such file or directory: '/tmp/cats-and-dogs.zip'