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

My python code runs on multiple GPUs and runs perfectly with tensorflow-gpu. Then I tried to package it with pyinstaller, but I got tensorflow issues. I added a tensorflow hook...

state:triage

The problem is that two packages provide `libtiff.5.dylib` and those two copies are incompatible. I.e., after `pip install metpy`, this is what we get: ``` $ find . -name "libtiff*"...

```python from PyInstaller.utils.hooks import collect_data_files hiddenimports = ["pyfiglet.fonts"] datas = collect_data_files ("pyfiglet") ````

Hi I have a python script to summarize text using Python's gensim package. I wanted to create a exe for this script. When I compiled this script using Pyinstaller, the...

Hi guys, I was creating an executable for kivy application. And it uses a python script that requires pywinauto. After building the exe using pyinistaller on the spec file, I...

state:triage

Hi all, need help with PyInstaller and [Pywinauto](https://github.com/pywinauto/pywinauto) lib. `test.py` file (one liner): ``` from pywinauto.application import Application ``` Create EXE file based on `test.py` file: ``` > pyinstaller test.py...

Since [VTK 8.2.0](https://blog.kitware.com/vtk-8-2-0/) the internal structure of the package has changed significantly making existing hook obsolete (for new versions). I've gotten my application to work with the following hook (`hook-vtkmodules.py`,...

https://github.com/pyinstaller/pyinstaller-hooks-contrib/blob/1649c5e412e02f5ebee4c542093064c8ba1c96bb/src/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_boto.py#L18 Wanted to make the developers aware of this key and make sure this isn't a leak.

Hi attaching issue from apscheduler here too, since there might be a bug in pyinstaller and not in apscheduler: [https://github.com/agronholm/apscheduler/issues/530](url) TLDR: exe file gives an error, apscheduler devs thinks its...

**Issue:** I have created a network graph using _PyVis_ and used _PyQt5_'s _QWebEngineView_ to show the html output created using _PyVis_. I used anaconda and _spyder_ to develop the code...