I just started the Cat and Dog classifier project on Python, but when I run the first part of the code, it won’t let me download the data from the url that freecodecamp gave me I’m not sure what the error means and where I’m going wrong? Please help thank you so much
(this is what the error message says:)
Downloading data from https://cdn.freecodecamp.org/project-data/cats-and-dogs/cats_and_dogs.zip
HTTPError Traceback (most recent call last)
/usr/local/lib/python3.6/dist-packages/tensorflow/python/keras/utils/data_utils.py in get_file(fname, origin, untar, md5_hash, file_hash, cache_subdir, hash_algorithm, extract, archive_format, cache_dir)
277 try:
–> 278 urlretrieve(origin, fpath, dl_progress)
279 except HTTPError as e:
8 frames
HTTPError: HTTP Error 403: Forbidden
During handling of the above exception, another exception occurred:
Exception Traceback (most recent call last)
/usr/local/lib/python3.6/dist-packages/tensorflow/python/keras/utils/data_utils.py in get_file(fname, origin, untar, md5_hash, file_hash, cache_subdir, hash_algorithm, extract, archive_format, cache_dir)
278 urlretrieve(origin, fpath, dl_progress)
279 except HTTPError as e:
–> 280 raise Exception(error_msg.format(origin, e.code, e.msg))
281 except URLError as e:
282 raise Exception(error_msg.format(origin, e.errno, e.reason))
Exception: URL fetch failure on https://cdn.freecodecamp.org/project-data/cats-and-dogs/cats_and_dogs.zip: 403 – Forbidden