Python Forum

Full Version: install program silent
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I install program silent(quite mode) using python?
install without window popups
Thanks,
Are you talking about a package that you created?
First create a setup.py file, and then create a wheel using:
python setup.py bdist_wheel
see: http://lucumr.pocoo.org/2014/1/27/python-on-wheels/

a wheel can be saved on PyPi, and loaded using a script.
I'm not sure if you can make it totally 'silent' because tools used to install the wheel usually display the steps being performed as they are executed. Look for a verbose option.
see following is part of the code I need to install infranview and other program silently
if che50.get() == "1":
os.system(programSourcePath + '/"iview444_x64_setup.exe"')
can you give example? I am confuse with this subprocess module
Thanks,
Can someone give me example how to use subprocess module
install the infranview program in silent mode?
Thanks
The linked docs contain examples. If you still have issues, please share your code so we don't have to make wild guesses as to what the problems are.