Streamlink with OpenPLI 9 #5574
-
DescriptionHi all, I'm trying to build streamlink in openpli 9, i use python 3.9.9 with pip. I'm have some problems, its keeps saying that i have not installed libxml2 and libxslt development packages.. lscpu: Maybe someone can help me:) Thx |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
lxml doesn't provide wheels (pre-built binary Python packages) for This means you'll need to build lxml from source, which is what I don't know OpenPLi, so you'll have to ask there or figure it out on your own. |
Beta Was this translation helpful? Give feedback.
lxmlis one of Streamlink's dependencies. You're having issues installinglxml, not Streamlink.https://lxml.de/
lxml doesn't provide wheels (pre-built binary Python packages) for
armv7l. It only has wheels forx86_64,i686andaarch64, for glibc 2.17 / 2.28 and musl libc 1.1, as you can see here:https://pypi.org/project/lxml/4.9.3/#files
This means you'll need to build lxml from source, which is what
piptried to do in your case, as it couldn't find matching wheels.libxml2andlibxsltare two oflxml's build-dependencies, as well asCython(optional). Make sure that you have the development packages of those two libraries installed via your distro's package management. Otherwise, you'l…