pyinstaller-hooks-contrib
pyinstaller-hooks-contrib copied to clipboard
Community maintained hooks for PyInstaller.
**Describe the bug** * hook/library: wxPython * Does the error get raised while building or when running? (R: Nothing, all right) **To Reproduce** * Create a project with wxPython *...
When pyinstalling an application with an OpenCV-built-from-source dependency, the bundled application fails importing `cv2` with an error message like this: ``` ImportError: OpenCV loader: missing configuration file: ['config.py']. Check OpenCV...
Pyinstaller builds successfully, however when I run the exe I get an error related to missing torchtext dylib files. I get the following warnings during the freezing: ``` 98346 WARNING:...
Hi, I'm the maintainer of https://github.com/adang1345/delvewheel, which is a tool that bundles external DLLs into wheels. I have seen reports that whenever `pyinstaller` is used to create an executable that...
Fix for pyinstaller4.4 need to use recursive=True
Simple copy_metadata to make python-tds work in packed form.
- Add [aumbry](https://github.com/pyarmory/aumbry) suppport: + https://aumbry.readthedocs.io/en/latest/
Hook for the pynsmp_mibs package at https://pypi.org/project/pysnmp-mibs/ It is a package that contains a wide variety of MIB's precompiled for the pysnmp package
``` import pyttsx3 tts_engine = pyttsx3.init(debug=True) tts_engine.setProperty("rate", 140) tts_voices = tts_engine.getProperty('voices') for voice in tts_voices: if voice.name == "IVONA 2 Tatyana OEM": tts_engine.setProperty('voice', voice.id) print("Голос озвучки установлен на: " +...