Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSError: [WinError 14001] The application failed to start because it's side-by-side configuration is incorrect #440

Open
beratcmn opened this issue May 27, 2023 · 3 comments

Comments

@beratcmn
Copy link

Summary:

I just installed pyppeteer and tried to run the example program but it gives me this error.

Code:

import asyncio
from pyppeteer import launch


async def main():
    browser = await launch()
    page = await browser.newPage()
    await page.goto('https://example.com')
    await page.screenshot({'path': 'example.png'})
    await browser.close()

asyncio.get_event_loop().run_until_complete(main())

Screenshot of the terminal session:

image

System Info:

OS: Windows 11 22H2 22621.1702
Python Version: 3.10.11
CPU: Ryzen 5 2600
Memory: 16GB
Environment: venv Virtual Environment

@KingCh1ll
Copy link

same issue here

@BoredVoidEater
Copy link

Uninstall pyppeteer with pip then run fsutil.exe file setCaseSensitiveInfo . disable on the environment folder and the install pyppeteer again

@Evan2296
Copy link

I just fixed the issue for myself. I had to go to the download of chromium I needed and manually do it since pyppeteer wasn't installing the correct version of it. Here was the link: https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Win_x64/588439/

I downloaded it and got the path of the chrome.exe chromium and put it into the thang manually and now it works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants