Le mardi 14 novembre 2006 à 15:32 +0100, nicola a écrit : > I've just downloaded the 0.1 version of Elisa Media Center. > I tried to follow the instruction i found at > https://core.fluendo.com/elisa/trac/wiki/ElisaEdgy > but i have an error. > After installing the "python-setuptools" package the error changed. Now > it says: > Any ideas? > > [EMAIL PROTECTED]:~/apps/elisa-0.1.0$ python elisa.py > Traceback (most recent call last): > File "elisa.py", line 6, in ? > from core import application > File "/home/keke/apps/elisa-0.1.0/core/application.py", line 24, in ? > from core import config, log, menu, common > File "/home/keke/apps/elisa-0.1.0/core/menu.py", line 19, in ? > from core.signals.misc import state_changed > File "/home/keke/apps/elisa-0.1.0/core/signals/__init__.py", line 2, in ? > from pgm.message import signal > ImportError: No module named pgm.message
Where did you install Pigment? If you specified a custom prefix at ./configure you need to check that it's in your PYTHONPATH variable. Example: if you did ./configure --prefix=/opt/pigment, you'll have to add /opt/pigment/lib/python2.4/site-packages to the PYTHONPATH env variable like this: $ export PYTHONPATH=/opt/pigment/lib/python2.4/site-packages:$PYTHONPATH Philippe
