I'm trying to use pyquery on Python 3.8.3, and fail due to:
>>> import pyquery
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/opt/lib/python3.8/site-packages/pyquery/__init__.py", line 7, in <module>
from .pyquery import PyQuery # NOQA
File "/opt/lib/python3.8/site-packages/pyquery/pyquery.py", line 11, in <module>
from lxml import etree
ImportError: /opt/lib/python3.8/site-packages/lxml/etree.cpython-38.so: undefined symbol: xsltGetProfileInformation
the OS is CoreELEC, so no "apt-get", but only "opkg install" like in OpenWRT.
tried reinstalling both lxml and pyquery, but it didn't work. where is the issue?