Hi,
Thanks for the suggestion! The problem is that I want to be able to
send this application to people who don't necessarily have python
installed, which is why I was considering py2app in the first place.
Script editor produces a 90k file which I doubt includes the necessary
python depe
Thomas Robitaille wrote:
I am trying to use py2app to make a simple MacOS X application that
launches an ipython shell.
Use AppleScript. Create a new script in Script Editor (/Applications/
AppleScript):
tell application "Terminal" to do script "ipython"
Save as 'Application Bund
David Warde-Farley wrote:
You might also be interested in Nicolas Rougier's Glipy package, which
embeds IPython (and some other neat NumPy-related features) in an OpenGL
pseudo-terminal.
I know the iPython folks have been doing a lot to make it embeddable in
GUIs -- you could use the wxPython
On 30-Apr-09, at 4:36 PM, Thomas Robitaille wrote:
I am trying to use py2app to make a simple MacOS X application
that launches an ipython shell.
How do you expect to use this? It appears to need a terminal window
-- Py2app is usually for GUI apps, so it will dump output to
Console.app, b
I am trying to use py2app to make a simple MacOS X application that
launches an ipython shell.
How do you expect to use this? It appears to need a terminal window
-- Py2app is usually for GUI apps, so it will dump output to
Console.app, but not give you a terminal.
That's true - what I wo
Thomas Robitaille wrote:
Hi,
I am trying to use py2app to make a simple MacOS X application that
launches an ipython shell.
How do you expect to use this? It appears to need a terminal window --
Py2app is usually for GUI apps, so it will dump output to Console.app,
but not give you a termin
Hi,
I am trying to use py2app to make a simple MacOS X application that
launches an ipython shell. At the moment, I have the following python
script:
---
from IPython.Shell import IPShellEmbed
args = ['-pi1','In <\\#>:','-pi2',' .\\D.:','-po','Out<\\#>:','-
nosep']
ipshell = IPShellE