I need to create an installer for Windows which should be able to install a specific version of the Python interpreter (2.7) plus a set a dependencies such as ipython, numpy, pandas, etc.
Basically this is the same thing Active State did for their Active Python distribution: a single bundle including interpreter + deps.
Not being a Windows user I'm not sure where to start with this except maybe looking into NSIS (could that be of any help?).
py2exe
orcx_freeze
to make an executable and use NSIS or Inno Setup to make an installer. But never tried it. – Beth.exe
package. The only difference is that you don't actually install python system-wide and it doesn't break stuff or fail – Beth