optional extras #7109
zalmane
started this conversation in
Features & Development
optional extras
#7109
Replies: 2 comments 1 reply
-
PyInstaller isn't going to do this since a PyInstaller built application is supposed to be immutable. You can hack in plugin code by adding directories to |
Beta Was this translation helpful? Give feedback.
0 replies
-
is there a way to create a second pyinstaller bundle and allow the user to
post install these? is there any mechanism i can use to do that?
I am not looking to dynamically load modules, just a way to post install
additional procreate bundles.
…On Sat, Sep 24, 2022, 16:27 Brénainn Woodsend ***@***.***> wrote:
PyInstaller isn't going to do this since a PyInstaller built application
is supposed to be immutable. You can hack in plugin code by adding
directories to sys.path at runtime but that's a task better suited to pip
rather than adhoc code and to use pip, you need a proper Python environment
rather than the bundle PyInstaller produces.
—
Reply to this email directly, view it on GitHub
<#7109 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AANAS5SSWKN5AQOA6YNN5CDV736VVANCNFSM6AAAAAAQUT5BSE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to provide my users with a base package and then optional extras. For example, packaging of a set of database drivers.
Is there a mechanism to create an archive with additional wheel files that can be added to an existing one-file bundle or a folder?
Are there any built in tools to achieve this?
Beta Was this translation helpful? Give feedback.
All reactions