Open oddish3 opened 1 month ago
Thanks for reporting the issue! We have to wait until someone with access to macOS can help you.
It seems that nobody on macOS has seen this issue... On Debian Linux the system package python3-poppler-qt5
depends not only on other Python packages but also on some C libraries:
Depends:
python3-pyqt5 (>= 5.15.1),
python3 (<< 3.13),
python3 (>= 3.12~),
python3-pyqt5.sip,
libc6 (>= 2.14),
libpoppler-qt5-1t64 (>= 21.06.0),
libqt5core5t64 (>= 5.15.1),
libstdc++6 (>= 5)
I'm trying to run the pdfnotes.py Python script for Zotcite (via Zpdfnote) that requires
popplerqt5
. However, I'm unable to find or installpopplerqt5
via pip. Despite having installedPyQt5
successfully, the script still reports that required modules are missing.Steps to Reproduce
PyQt5
is installed.popplerqt5
.Environment Details
/Users/user/.config/nvim/venv
greenlet 3.1.1 msgpack 1.1.0 pip 24.2 pynvim 0.5.0 PyQt5 5.15.11 PyQt5-Qt5 5.15.15 PyQt5_sip 12.15.0 PyYAML 6.0.2 setuptools 75.2.0 python path set to this venv in neovim
Output of Package Checks
Additional Information
pip
cannot findpopplerqt5
:Expected Behavior
The script should run without error if all dependencies are installed.
Actual Behavior
Error suggests missing Python module
popplerqt5
, which is not available via pip.Additional Context
I activated the virtual environment and ensured all system-level libraries are installed. The issue seems to be related to unavailable bindings or missing instructions on how to integrate
poppler
with Python and Qt.