I'm behind a corporate proxy.
I can get pip working by doing set https_proxy=http://myproxy:port so I can install pyppeteer
but whatever I've tried - I can't get pyppeteer to download chromium. I run pyppeteer-install, and it just says downloading chromium, but nothing ever gets put in the %appdata% pyppeteer location. is there any way to fix it, beyond downloading chromium manually and just putting it in the correct spot?
Based on pyppeteer/download_chromium but with the use of
urllib3.ProxyManager
instead ofurllib3.PoolManager
.Simply call
download_chromium()
in your programRem: Don't forget to replace
http://proxy-ip:port
with your corporate proxy.