Python based silent installer, how to?

Asked by Muhammad Bashir Al-Noimi

I'm using python based package inside my installer.

How can I install it silently in Windows?

PS
Most installers has arguments for silent installation ex. NSIS based installers has '/S' argument but I didn't find any reference for python based installers

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Edit question
Assignee:
No assignee Edit question
Solved by:
Martin Packman
Solved:
Last query:
Last reply:
Revision history for this message
Best Martin Packman (gz) said :
#1

Is question specifically about the installers provided to install Bazaar itself on windows?

With the all-in-one installer based on Inno Setup you can use /SILENT which then won't prompt you.

The standard distutils bdist_wininst installers don't support non-interactive installation, but they're one of the expected standards for Python packages on windows so we also supply them.

Revision history for this message
Muhammad Bashir Al-Noimi (mbnoimi) said :
#2

Thanks Martin Packman, that solved my question.