-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Cannot install macOS m1 cpu #1636
Comments
Encountered the same, I think the old version of Electron being used doesn't (didn't) have arm64 builds. Updating to a new version of electron should work
|
Would love a fix to this problem. |
Updating to the latest version of nightmare doesn't work. It still uses a version of electron that is too old for M1. |
Can this problem be solved ?😒 |
frustrating... but trying to solve this issue i found "puppeteer" and it works just fine. rip nightmare |
Just found a solution - you have to install it using |
I think a proper solution is to bump the electron version to the one that supports m1 cpu? Electron |
This is a pretty big deal with a seemingly simple fix. Considering it hasn't been addressed, does this mean nightmare is a dead project? |
Was able to solve this by using npm's overrides (described here). If you use "devDependencies": {
"electron": "^11.0.0",
"nightmare": "^3.0.2"
},
"overrides": {
"nightmare": {
"electron": "$electron"
}
} |
When I install nightmare in macOS (m1 CPU)
It is not working like this.
How can I fix it?
The text was updated successfully, but these errors were encountered: