-
-
Notifications
You must be signed in to change notification settings - Fork 175
Closed
Labels
Description
It appears that pyinstaller does not like keyrings.alt. The orginal file works fine and the compile stage with pyinstaller completes ok. However on running the binary you get..
Traceback (most recent call last):
File "junc.py", line 544, in <module>
File "junc.py", line 146, in pw
File "build/bdist.linux-x86_64/egg/keyring/core.py", line 42, in get_password
File "build/bdist.linux-x86_64/egg/keyring/backends/fail.py", line 18, in get_password
RuntimeError: No recommended backend was available. Install the keyrings.alt package if you want to use the non-recommended backends. See README.rst for details.
It looks that pyinstaller is missing a hook for keyrings.alt but unsure of the format. Have tried a number of things including the command line for pyinstaller and creating a hook .py file. Any thoughts as to how this can be made to work ?