|
The project readme lists dependencies for Mac and Unix/Linux. Are these build-time dependencies, or runtime dependencies? To put it another way, if I use zenity and distribute my app, do I have to tell Mac & *nix users they must install osascript or zenity to run my app? |
Answered by
ncruces
Jan 6, 2023
Replies: 1 comment 1 reply
|
They are runtime dependencies. Unix/Linux users need to install You can test for the availability of runtime dependencies using |
1 reply
Answer selected by
ncruces
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
They are runtime dependencies.
Unix/Linux users need to install
zenity(or a clone, likeqarma).osascript(and its sisterosacompile, which is needed for the progress dialog) is preinstalled on every mac.You can test for the availability of runtime dependencies using
zenity.IsAvailable().