-
-
Notifications
You must be signed in to change notification settings - Fork 671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QUESTION] Is pyinstaller supported for automatic shell completion? #101
Comments
@johnthagen Did you mange to get pyinstaller to package a typer application? Curious because I might run into the same situation soon. |
@wmmc88 No, I disable shell auto completion on all of my Tyler/Pyinstaller apps. |
I see this as well:
Similar error for |
May have resolved by adding
Note that specifying |
OK, I am more happy with:
In context:
Noting pyinstaller showing a good sign:
So it seems to be finding Windows and posix shellingham modules. @johnthagen @wmmc88 Try this out at your convenience and see if it works for you. I don't think that the issue should be closed until this is tested and documentation is updated. |
Confirmed that this works in Windows as well. |
Is there a guide for bundling typer applications with pyinstaller? I run mine and the resulting binary just exits with no output. |
Take a look at the GitHub Workflows and I am in the process of refactoring and generalizing for this series of articles: https://dev.to/jphutchins/building-a-universally-portable-python-app-2gng I am also working on adding "CLI app" support to briefcase: beeware/briefcase#556 (comment) |
First check
Description
I am bundling a executable using
pyinstaller
3.6 that has a dependency ontyper[all]
.When I run with
--show-completion
I get the following error:I wasn't sure if this was a bug, or something that simply isn't supported.
Additional context
Build command:
The text was updated successfully, but these errors were encountered: