Installer

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chris

    Installer

    Hey all,

    I've created a python program that relies on pysqlite, wxpython, and
    matplotlib. Is there any way of creating an installer that will
    install all these modules, python 2.5 and my program?

    Thanks.
  • =?ISO-8859-1?Q?=22Martin_v=2E_L=F6wis=22?=

    #2
    Re: Installer

    I've created a python program that relies on pysqlite, wxpython, and
    matplotlib. Is there any way of creating an installer that will
    install all these modules, python 2.5 and my program?
    Sure. Look at Tools/msi in the Python code, and adjust it to your
    needs. Please don't use the official product code, but create your own
    one.

    Regards,
    Martin

    Comment

    • Mike Driscoll

      #3
      Re: Installer

      On Apr 24, 11:39 am, Chris <cesug...@gmail .comwrote:
      Hey all,
      >
      I've created a python program that relies on pysqlite, wxpython, and
      matplotlib. Is there any way of creating an installer that will
      install all these modules, python 2.5 and my program?
      >
      Thanks.
      Chris,

      If all you're doing is creating an installer for your custom Python
      program to be run on PCs without Python, then you should take a look
      at py2exe or gui2exe (a py2exe wrapper). I use the latter to roll my
      program into an exe, then I use Inno Setup (which is free) to create
      the installer.

      Mike

      Comment

      • M.-A. Lemburg

        #4
        Re: Installer

        On 2008-04-24 18:39, Chris wrote:
        Hey all,
        >
        I've created a python program that relies on pysqlite, wxpython, and
        matplotlib. Is there any way of creating an installer that will
        install all these modules, python 2.5 and my program?
        Assuming that you're on Windows, a well-working approach is
        to wrap up your application using py2exe and then creating
        an installer using e.g. InnoSetup or NSIS.

        --
        Marc-Andre Lemburg
        eGenix.com

        Professional Python Services directly from the Source (#1, Apr 24 2008)
        >>Python/Zope Consulting and Support ... http://www.egenix.com/
        >>mxODBC.Zope.D atabase.Adapter ... http://zope.egenix.com/
        >>mxODBC, mxDateTime, mxTextTools ... http://python.egenix.com/
        _______________ _______________ _______________ _______________ ____________

        :::: Try mxODBC.Zope.DA for Windows,Linux,S olaris,MacOSX for free ! ::::


        eGenix.com Software, Skills and Services GmbH Pastor-Loeh-Str.48
        D-40764 Langenfeld, Germany. CEO Dipl.-Math. Marc-Andre Lemburg
        Registered at Amtsgericht Duesseldorf: HRB 46611

        Comment

        Working...