We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When trying to download the geckodriver either through script or CLI on macOS, there is the following error:
RuntimeError: Error, unable to determine correct filename for 64bit macos
The text was updated successfully, but these errors were encountered:
The error is in this line. Cause it is searching for a file with the string macos64 and it doesn't exist in github. It should be macos-aarch64
macos64
macos-aarch64
webdriverdownloader/webdriverdownloader/webdriverdownloader.py
Line 320 in 959dff6
Sorry, something went wrong.
A workaround could be use the library like this
gdd.download_and_install(os_name='macos', bitness='-aarch64')
if you already know if your are in macos and 64 bit machine. Or use 32 bit version? idk
NOTE: I didn't try it, dont own a mac, but should work
No branches or pull requests
When trying to download the geckodriver either through script or CLI on macOS, there is the following error:
RuntimeError: Error, unable to determine correct filename for 64bit macos
The text was updated successfully, but these errors were encountered: