-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[BUG] Webkit problem with libwebp-1.1.0-1, error while loading shared libraries: libwebp.so.6 #2621
Comments
Which Linux distribution are you using? |
@yury-s Arch Linux x86_64 |
I am also using Arch, and got same errors. |
@somoy99 It might be! But i wouldn't say anything for sure. All in all, our recent effort at making launch experience smoother should help you here: you'll get a list of all missing dependencies, at least as of our upcoming 1.3 release. We don't consider missing dependency a bug in this case since ArchLinux support is out of scope for us at the moment. Closing this since it's not actionable on our side. |
Arch support would be nice! I had missing
Now I have this error:
Any ideas? Maybe the new errors is due to linking to the wrong versions, which I know isn't the actual solution. |
Same issue, did you manage to solve it? |
I had the same issue in ubuntu 18.04 LTS. I run following command and solved it.
Can you please include everything when we install? Cheers |
same issue here on arch linux
After linking system libraries with above i get the error below
|
I'm running Manjaro and I'm encountering the same issue:
Is Arch support on the roadmap? Has anyone found a workaround? |
With Ubuntu 20.04.2 LTS (minimal installation) + Playwright 1.10.0 when running WebKit you get this error:
Solution:
|
Install the correct version of libicu manually:
|
Manjaro: I solved it by installing the following libs: |
Run webkit browsers SEE microsoft/playwright#2621 (comment)
I did that too, but I still had some missing libraries, so I had to also install |
using arch wsl, I installed these package and solved it |
can everyone confirm this? Microsoft should provide also an option for Arch based operative systems. |
|
i wouldn't call it "runs everywhere" 😆
Playwright - 1.31.0 |
@slch Had the exact same missing dependencies. Here's how to add the missing libraries:
cd <extract_location>/usr/lib
sudo cp libflite_cmu_us_awb.so.1 libflite_cmu_us_kal.so.1 libflite_cmu_us_rms.so.1 /usr/lib Where |
Related ref: #8100 (comment) |
For Amazonlinux (Fedora) it works for my case: # Install Playwright dependencies
RUN yum install -y atk at-spi2-atk libdrm libXcomposite libXdamage libXfixes libXrandr mesa-libgbm alsa-lib \
cups-libs libXScrnSaver pango ipa-gothic-fonts xorg-x11-fonts-100dpi xorg-x11-fonts-75dpi xorg-x11-utils \
xorg-x11-fonts-cyrillic xorg-x11-fonts-Type1 xorg-x11-fonts-misc
# Install Xvfb for headless execution
RUN yum install -y xorg-x11-server-Xvfb
# Node.js & Playwright installation // make sure to have installed node
RUN npx playwright install |
Not really a solution, but I disabled webkit and called it a day. It would help me to diagnose which library file is missing with the way the error message was before, but now I get:
|
The same problem |
Solved the dependency issue on Arch Linux: First I've installed these dependencies through yay and pacman package managers:
Thank you, @dmitriiweb, @vaziliybober The libwebp052 AUR repository is no longer available, so you can do two things:Build the libraries yourself
Use the newer libwebp AUR repository
Now only flite is missingI've used an approach suggested by @simontong here #8100
Playwright should be working now. |
Instructions provided by @KorcakDaniel work perfectly on Manjaro Arch! Thank you @KorcakDaniel, life saver! 🥳 |
After following all of this here, I still had these two
|
I faced the longest list so far:
But playwright does work. (Haven't tried taking a screenshot, reading the clipboard, or any of that fancy stuff) |
Does it include all the AUR packages? |
Nope, and yet it seems to be helpful with the latest playwright without installing anything else |
does it work without all the AUR workarounds? |
Seems to do, just |
Same here, everything seem to work fin but got the same "Playwright Host validation warning" on Manjaro Linux |
Context:
Code Snippet
Describe the bug
error while loading shared libraries: libwebp.so.6
which I fixed by creating the symbolic link manually.
sudo ln /usr/lib/libwebp.so.7 /usr/lib/libwebp.so.6
Then again running into
Which I solved by creating the symbolic link manually again.
sudo ln /usr/lib/libpcre.so.1 /usr/lib/libpcre.so.3
Is it because of the latest libwebp-1.1.0-1 ?
The text was updated successfully, but these errors were encountered: