-
Notifications
You must be signed in to change notification settings - Fork 926
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
Installation fails on BigSur #325
Comments
What is your MacOS version ?
…On Wed, Nov 25, 2020, 17:39 mjmare ***@***.***> wrote:
I created a new python 3.9 virtual env, activated the vent, pip installed
playwright and then tried to do the install command (python -m playwright
install). But then I get this error:
No such file or directory: '/Users/mjm/Zcratch/venv/lib/python3.9/site-packages/playwright/driver/playwright-cli'
Additional info:
>pip freeze
click==7.1.2
greenlet==0.4.17
pip-tools==5.4.0
playwright==0.162.1
pyee==8.1.0
six==1.15.0
typing-extensions==3.7.4.3
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#325>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOGYUZW27MGCMWXENX236ODSRTXZLANCNFSM4UCJ6X3Q>
.
|
Sorry, should have mentioned that: macOS Big Sur 11.0.1. Brew-installed python (Python 3.9.0 (default, Nov 21 2020, 14:55:42)[Clang 12.0.0 (clang-1200.0.32.27)] on darwin) |
Python 3.9 / Pip packaging <20.5 do not yet support BigSur. My understanding is that the fix has landed and now we are waiting for the release: |
To be clear, this isn't |
@pavelfeldman Newer version of pip solves the problem with MacOS Big Sur. https://pip.pypa.io/en/stable/news/#features |
Is this confirmed fixed? I have pip 20.3.3 and still get file not found for playwright-cli Big Sur 11.1 on M1 |
Run this code and paste the output. from packaging.tags import sys_tags
print(list(sys_tags())) |
`>>> from packaging.tags import sys_tags
|
Curious to know if your python is running natively using arm binary or it is emulated for x86_64 ? |
` /opt/local/bin/python: Mach-O 64-bit executable arm64 `
|
@pavelfeldman Are the browsers compatible for Apple M1 as there is a mac11 arm build on https://devops.aslushnikov.com/ |
playwright-0.152.0.post56+g8dba1ff-py3-none-macosx_11_0_universal2.zip Extract the zip file and try to install it with |
With that file I get a permission error because the file is not executable.
After chmod u+x it works. Thank you. |
I created a new python 3.9 virtual env, activated the vent, pip installed playwright and then tried to do the install command (python -m playwright install). But then I get this error:
Additional info:
The text was updated successfully, but these errors were encountered: