Re: [Pythonmac-SIG] py2app and ipython

2009-05-02 Thread Thomas Robitaille
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

Re: [Pythonmac-SIG] py2app and ipython

2009-05-02 Thread has
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

Re: [Pythonmac-SIG] py2app and ipython

2009-04-30 Thread Christopher Barker
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

Re: [Pythonmac-SIG] py2app and ipython

2009-04-30 Thread David Warde-Farley
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

Re: [Pythonmac-SIG] py2app and ipython

2009-04-30 Thread Thomas Robitaille
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

Re: [Pythonmac-SIG] py2app and ipython

2009-04-30 Thread Christopher Barker
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

[Pythonmac-SIG] py2app and ipython

2009-04-30 Thread Thomas Robitaille
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