Running Application Within Emacs

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • rshepard@nospam.appl-ecosys.com

    #1

    Running Application Within Emacs

    My editor is emacs in linux, and I have the python mode enabled. The two
    menus -- IM-Python and Python -- allow me to navigate within the loaded
    module and open execute buffers, among other things. But, I don't see a way
    to run a wxPython application from within the editor as I would from the
    command line.

    Is this possible? If so, how?

    Ric
  • bernhard.voigt@gmail.com

    #2
    Re: Running Application Within Emacs

    You can call scripts from the interpreter with execfile('scrip t.py').

    If you use ipython there is a %run command that executes a script.

    Enjoy! Bernhard

    On Feb 7, 3:26 pm, rshep...@nospam .appl-ecosys.com wrote:
    My editor is emacs in linux, and I have the python mode enabled. The two
    menus -- IM-Python and Python -- allow me to navigate within the loaded
    module and open execute buffers, among other things. But, I don't see a way
    to run a wxPython application from within the editor as I would from the
    command line.
    >
    Is this possible? If so, how?
    >
    Ric

    Comment

    Working...