PyQT installed?

2013-12-30 Thread Emilio Hernandez
Hello After a lot of installing and grabbing I think everything I need, I finally managed to instal PyQT and it seems is running as I have Eric's rename tool and it is no longer warning PyQT is not installed. I am new to this PyQT thing so how I can actually be sure it is working ok, besides the

Re: PyQT installed?

2013-12-30 Thread Jon Swindells
If it's working, it's working :) if PyQt imports you are good to go (and it does so you are) try: import PyQt4 except ImportError, e: print e -- Jon Swindells jon_swinde...@fastmail.fm On Mon, Dec 30, 2013, at 09:32 PM, Emilio Hernandez wrote: Hello After a lot of insta

Re: PyQT installed?

2013-12-30 Thread Emilio Hernandez
Ok, Cool As simple as that. Thx a lot Jon. 2013/12/30 Jon Swindells > If it's working, it's working :) > > if PyQt imports you are good to go (and it does so you are) > > try: > import PyQt4 > except ImportError, e: > print e > > > -- > Jon Swindells > jon_swinde...@fastmail.fm