[Pythonmac-SIG] check if wxpython has been installed properly

2009-08-20 Thread beegee beegee
hi guys i opened my terminal window on a mac os x tiger 10.4.11 and tried to do the following guruprasad-gopinaths-computer:~/Desktop/pylot guruprasadgopinath$ python run.py -g Pylot was unable to start the GUI. Check if wxPython is installed properly. guruprasad-gopinaths-computer:~/Desktop/pyl

[Pythonmac-SIG] Unable to execute python file

2009-08-20 Thread beegee beegee
Hey guysI need some help here I am new to python, I have a mac os tiger 10.4.11 I just downloaded a performance testing tool called pylot I downloaded the entire folder to my desktop I am expected to run the following command python run.py -g (the instructions are in this link: http://www.pyl

Re: [Pythonmac-SIG] py2app import errors

2009-08-20 Thread Aahz
On Wed, Aug 19, 2009, Oliver Goodman wrote: > > I'm having problems getting py2app to work for me. > > The program (minimal test case): > > # test.py > from Crypto.Cipher import DES3 Is Crypto in a zipped .egg? If yes, you need to unzip it. -- Aahz (a...@pythoncraft.com) <*>

[Pythonmac-SIG] py2app import errors

2009-08-20 Thread Oliver Goodman
Hi, I'm having problems getting py2app to work for me. The program (minimal test case): # test.py from Crypto.Cipher import DES3 if __name__ == '__main__': pass Runs fine on the command line. Then I do: mymble:bob oag$ rm -rf build/ dist/ mymble:bob oag$ py2applet --make-setup test

Re: [Pythonmac-SIG] py2app & multiprocessing

2009-08-20 Thread Alexandre Quessy
Hi again, I think using multiprocessing should be the way to go, so that you use twisted for the main event loop in one process, and wx for the main event loop in the other. In a simple way, you can also build your own custom multiprocessing tool. You just need one system calls, and one network co

Re: [Pythonmac-SIG] py2app & multiprocessing

2009-08-20 Thread Gabriel Rossetti
Hello Alexandre, His is how I had it before, but it was causing me problems and I was told that it's better tu run them in separate threads. Do you use twistd (.tac files)? I'll have a look at your application, thanks! Gabriel Alexandre Quessy wrote: Hi everyone, I use Twisted everyday, and

Re: [Pythonmac-SIG] problems with executing python files

2009-08-20 Thread Chris Rebert
On Thu, Aug 20, 2009 at 1:15 AM, beegee beegee wrote: > b. I opened my terminal window, and typed python run.py -g > > i either got a syntax error or > file does not exist please help Please include the exact error message and shell session transcript. Cheers, Chris -- http://blog.rebertia.com _

[Pythonmac-SIG] problems with executing python files

2009-08-20 Thread beegee beegee
I am new to python (i have version 2.5 on my machine), I have a mac os tiger 10.4.11 with 1 GB ram I just downloaded a performance testing tool called pylot I downloaded the entire folder to my desktop I am expected to run the following command python run.py -g I tried the following a. I ri