Menu

How to create executable?

Help
dkjMusic
2010-10-12
2013-05-01
  • dkjMusic

    dkjMusic - 2010-10-12

    I went through the tutorial in the BA help to create a Notebook app. It runs fine within the BA IDE, but nowhere in the project directory is an executable file for the resulting program: only App1.py, Frame1.py,..

    How do I create a standalone file which I can click to run the application in Ubuntu?

     
  • Werner F. Bruhin

    With Python programs you have to look at "freeze" utilities to do this type of thing.

    py2exe, windows specific
    cxfreeze
    bbfreeze
    pyinstaller
    py2app - Mac and Linux?

    These are the ones I am aware off, there might be others.

    Check out the wiki's for the above and there is some stuff in the wxPython wiki.

    http://wiki.wxpython.org/Deployment

    Werner

     

Log in to post a comment.