-
Notifications
You must be signed in to change notification settings - Fork 142
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
Command failed in puppeteer - The chromium binary is not available for arm64 #1772
Comments
I think we should update our puppeteer dependency to support M1 macs (cf this comment from puppeteer contributor) In the meantime using chromium from brew is the workaround (cf this blog post). I have no idea why brew is failing to install chromium in your case. Editing the Dockerfile won't probably fix it, as it has nothing to do with local development or puppeteer. |
I had the same issue with chromium from brew but manage to bypass the install error by only putting this variable in my env: export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true |
You could try installing chromium using brew. Note - without the Hope this helps. |
Should be fixed by #1843, feel free to re-open otherwise. |
I'm following the installation instructions so I can track user actions locally. I'm using an M1 Mac. During
yarn
process I receive the following error:I've tried installing chromium directly via homebrew but that leads me to another error:
From what I've read online, this could be mitigated by changing the dockerfile. I'm hesitant to make changes but could raise a PR if we find something that works.
The text was updated successfully, but these errors were encountered: