!wget --no-check-certificate \ + zip 파일 을 불러 온뒤 import zipfile 가져온뒤 filename = '/tmp/cats_and_dogs_filtered.zip' => 불러온 링크에 /tmp/cats_and_dogs_ 100%{===== /tmp 파일이 있다는 걸 알 수있다. 상위 폴더에서 tmp를 찾아 들어간 뒤 경로를 복사하여 filename = ' ' 에 넣어주면 된다. zip_ref = zipfile.ZipFile(filename, 'r') zip_ref.extractall('/tmp/cats_and_dogs') => 압축 해제한다는 뜻 zip_ref.close() 사이트 참조 https://yganalyst.github.io/data_handling/mem..