OSError: Chromium downloadable not found
Author: danilyefCreated Apr 2, 2024Updated Jun 18, 2026
During the execution of the html.render() function (which downloads Chromium) I got the following error:
ite-packages\pyppeteer\chromium_downloader.py", line 82, in download_zip
raise OSError(f'Chromium downloadable not found at {url}: ' f'Received {r.data.decode()}.\n')
OSError: Chromium downloadable not found at https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1181205/chrome-win.zip: Received <?xml version='1.0' encoding='UTF-8'?><Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Details>No such object: chromium-browser-snapshots/Win_x64/1181205/chrome-win.zip</Details></Error>.It seems like they removed version 1181205. There is no maintainer of the pyppeteer library so I thin it makes sense to do one of the following things:
- provide instruction how to download chromium manually
- implement chromium_downloader.py in the requests-html module.
Source: psf/requests-html