> -----Original Message----- > From: Pablo Endres [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, January 28, 2003 3:18 PM > To: Cedric Gustin > Cc: PyGTK List > Subject: RE: [pygtk] win32 pygtk-python > I import gtk I get aprox. the following error: > > Can't find procedure g_get_applicacion_name in libglib-2.0.0.dll > > Microsoft Windows 2000 [Versi�n 5.00.2195] > (C) Copyright 1985-2000 Microsoft Corp. > > C:\WINNT\system32>python > Python 2.2.1 (#34, Apr 9 2002, 19:34:33) [MSC 32 bit > (Intel)] on win32 > Type "help", "copyright", "credits" or "license" for more information. > >>> import gtk > Traceback (most recent call last): > File "<stdin>", line 1, in ? > File > "C:\PYTHON22\Lib\site-packages\gtk-2.0\gtk\__init__.py", line 43, in ? > from _gtk import * > ImportError: DLL load failed: No se encontr� el proceso especificado. > >>> > > Any Ideas >
I had a similar problem recently. This turned out to be the problem: I had previously installed an older version of hte Gtk 2.0 runtime files into my c:\winnt\system32 directory. Then, when I installed the newer Gtk 2.0 files from dropline.net, it installed them in a different location c:\program files\common files\Gtk\.... Well, my path was set up so that any programs first looked in my \winnt\system32 directory, so, even though I had installed the latest Gtk files, it was finding the old ones first. After I figured it out, and finished punching my forehead, I simply deleted the gtk dll files from \winnt\system32 and the program found the correct ones under \program files\common files. So, do you possibly have an earlier version of the gtk 2.0 runtime files in a different directory? Hope this helps! Jamey. _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
