pyinstaller-hooks-contrib icon indicating copy to clipboard operation
pyinstaller-hooks-contrib copied to clipboard

Community maintained hooks for PyInstaller.

Results 39 pyinstaller-hooks-contrib issues
Sort by recently updated
recently updated
newest added

**Which library is the hook for?** `xnat` (https://xnat.readthedocs.io/en/latest/) **Have you gotten the library to work with pyinstaller?** Yes, but it needs several hidden imports. (Just '--hidden-import xnat' was enough) **Additional...

hook-request

**Which library is the hook for?** `dipy` (https://dipy.org/) **Have you gotten the library to work with pyinstaller?** Not really and it needs several hidden imports. **Additional context** So far I...

good first issue
hook-request

When I try to run the program packaged with pyinstaller with the code below, I have > Traceback (most recent call last): > File "astropy/convolution/convolve.py", line 24, in > File...

I'm using a raspberry pi 3b+ and I want to run code that has the tensorflow package installed in the virtual environment. To install the tensorflow in the pipenv, i...

I get this error when I try to use a dash plotly app with long callback functionality: Traceback (most recent call last): File "cmt_appnge_copy.py", line 605, in File "dash\_callback.py", line...

good first issue
hook-request

I am using PySide6 and pygraphviz to create a simple three widget desktop application. When I use `pyinstaller --onefile --noconsole stackedAPP.py`, PyInstaller throws me this error: `Unable to find '/usr/sbin/neato'...

triage

**Describe the bug** It seems that the data files placed into /cv2/data directory are not being included by PyInstaller. The files are defined in https://github.com/opencv/opencv/tree/master/data/haarcascades and currently an --add-data argument...

state:triage

**Describe the bug** Using PyInstaller 5.13 and the latest pyinstaller-hooks-contrib 2023.12 release results in `ModuleNotFoundError: No module named 'h5py.defs'` when running our tests on a PyInstaller executable (https://github.com/NeurodataWithoutBorders/nwb-guide/issues/559). Tests were...

coincurve hooks, tested osx/linux/windows

…files. Problem on Debian GNU/Linux 11 (bullseye) and Ubuntu 22.04.1 LTS: In : os.path.realpath(shutil.which("dot")) Out: '/usr/sbin/libgvc6-config-update' In : os.path.dirname(os.path.realpath(shutil.which("dot"))) Out: '/usr/sbin' Solution: In : os.path.dirname(shutil.which("dot")) Out: '/usr/bin'