Leonid Ponomarev wrote: > Now , with alternative pygtk installer, python don't complain about > missing libraries, 'cause new installer contains it. Now python says > what is in second screenshot shown. I guess, iconv is too old or python > too new or something around dll incomtatibilities.
It should work when you put the iconv.dll into the correct folder, I guess. Please try that somehow ;) > Btw, it's interesting: > > when I try to start gpodder in CLI via python, not pythonw, I see this > trace: > > C:\Program Files\gPodder\bin>"C:\Program Files\PyGTK\Python\python.exe" > gpodder. > pyw > Traceback (most recent call last): > File "C:\Program Files\gPodder\bin\gpodder.pyw", line 176, in <module> > sys.exit( main()) > File "C:\Program Files\gPodder\bin\gpodder.pyw", line 127, in main > gpodder.interface = gpodder.GUI > AttributeError: 'module' object has no attribute 'GUI' That's expected. If you call it from the "bin" folder, the "gpodder" module will be the gpodder.pyw file, not ../src/gpodder/__init__.py - and this is why you get the error. If you start it in a folder other than "bin", it works. like in: C:\Program Files\gPodder>"C:\Program Files\PyGTK\Python\python.exe" "bin\gpodder.pyw" Maybe you should try that. Thanks, Thomas _______________________________________________ gpodder-devel mailing list [email protected] https://lists.berlios.de/mailman/listinfo/gpodder-devel
