DEV Community

gassdev
gassdev

Posted on

automation

How to automate software installation on windows with python script?

Top comments (2)

Collapse
 
rubenwap profile image
Ruben Sanchez

Does it need to be from a Python script? There is a good solution already for windows installs which is automation friendly: chocolatey.org/

If it really needs to be from Python, I guess you can call the chocolatey instruction using the subprocess Python module.

Collapse
 
gassdev profile image
gassdev

Thank you Ruben