Where can I figure out exactly what python files my script needs to run?
I have Installshield and Visual Studio, both of which I can use to create MSI setup, but I only want to package the exact files that my specific script needs so I’m not wasting my end users’ disk space. Thanks in advance!
The only way you’ll know for abolutely sure is to test the install on another server. Start by choosing what you believe to be the absolute minimum number of files. Create the MSI install package, and then install it on the other server. If it works, try removing other files that you don’t think are necessary. If it doesn’t work, try adding files that are on the original server, but not on the other server. Then test again.