I have a script which I want to deploy to some people in my group, but there are three dependencies ( python2.7, ExchangeCDO, pywin32). Is there a way that I can create one installation file that has these three installation dependencies bundled into exactly one file? e.g. an .exe or an .msi.
Asked
Active
Viewed 1,996 times
4
Ross Rogers
- 4,807
1 Answers
5
I've done something similar before by using NSIS. NSIS (Nullsoft Install System) is an open-source installation wizard tool. You can easily create a bundled installer which includes and runs all of your dependencies. For example, the installer for Firefox (and many other projects) uses NSIS.
nhinkle
- 37,661