RSS/Atom feed Twitter
Site is read-only, email is disabled

pygimp on windows? (Duh!)

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

3 of 3 messages available
Toggle history

Please log in to manage your subscriptions.

pygimp on windows? (Duh!) lode leroy 23 Jun 15:41
  pygimp on windows? (Duh!) Leon Brooks 23 Jun 15:54
pygimp on windows? (Duh!) Michael Schumacher 23 Jun 17:52
lode leroy
2005-06-23 15:41:21 UTC (almost 19 years ago)

pygimp on windows? (Duh!)

ok, I found the missing link !

from http://hans.breuer.org/ports/readme.win32

set PATHEXT=%PATHEXT%;.py

ok. so now the .py plugins are getting loaded, but I get Traceback (most recent call last):
File "C:\msys\1.0\target\lib\gimp\2.0\plug-ins\shadow_bevel.py", line 20, in ?
from gimpfu import *
File "c:\msys\1.0\target\lib\gimp\2.0\python\gimpfu.py", line 65, in ? import gimp
ImportError: No module named gimp

Leon Brooks
2005-06-23 15:54:43 UTC (almost 19 years ago)

pygimp on windows? (Duh!)

On Thursday 23 June 2005 21:41, lode leroy wrote:

ImportError: No module named gimp

Guessing here - not being an MS-Windows user - that there is another EnVar called something like LIBPATH or DLLPATH (or perhaps something Python-specific) which you need to add the gimp module's path to.

Cheers; Leon

Michael Schumacher
2005-06-23 17:52:34 UTC (almost 19 years ago)

pygimp on windows? (Duh!)

Von: Leon Brooks

Guessing here - not being an MS-Windows user - that there is another EnVar called something like LIBPATH or DLLPATH (or perhaps something Python-specific) which you need to add the gimp module's path to.

Python-specific - you drop a .pth file into Python's Lib directory (see the docs for details) which contains the path to the pygimp module.

HTH, Michael