--- Begin Message ---
Now I get another error - seeme like I miss a libgtkscintilla.so
Traceback (most recent call last):
File "/usr/bin/moleskine", line 39, in ?
from Moleskine.MoleskineApp import *
File "/usr/lib/python2.1/site-packages/Moleskine/MoleskineApp.py",
line 32, in ?
from Document import Document
File "/usr/lib/python2.1/site-packages/Moleskine/Document.py", line
31, in ?
import gtkscintilla
File "/usr/lib/python2.1/site-packages/gtkscintilla.py", line 2, in ?
import _gtkscintilla
ImportError: libgtkscintilla.so: cannot open shared object file: No such
file or directory
Valerio
On Thu, 2001-12-13 at 09:08, Rakesh Krishna wrote:
> I had the same problem with Moleskine. The problem typically is that
> your python libraries (I am not a python guy, so forgive me if they are
> called differently ) directory is different from what the rpm (or the
> installer) assumes. To solve this, do "locate Moleskine" at the command
> prompt. It will list something like this
>
> <snip>
> /usr/share/Moleskine/images/moleskine.png
> <libpath>/pythonXX/site-packages/Moleskine
> <libpath>/pythonXX/site-packages/Moleskine/CVS.py
> <libpath>/pythonXX/site-packages/Moleskine/CVS.pyc
> <snip>
>
> if you cd to <libpath> and do a "ls pyth*" you will find 2 or more
> python directories.
> One of these directories is your real python directory and others are
> all wrong directories.
> Type "python -V" to get the correct version of python on your machine.
> If you version is 2.0, then /usr/lib/python2.0 is the correct directory.
> Once you find out the correct directory, just move or "cp -r" (It is
> safer ) the Moleskine directory from /usr/lib/pythonXX/site-packages/ to
> /usr/lib/python2.0/site-packages/.
> Then try starting Moleskine.
> This should solve your problem.
>
> let me know if this solves your problem.
> - Rakesh !
> ------------------
> Geek at large
> ------------------
>
> valerio de iacovo wrote:
>
> >Hi list,
> >
> >I got a critical problem with moleskine: when I try to run it I get the
> >following:
> >
> >
> >Traceback (most recent call last):
> > File "/usr/bin/moleskine", line 38, in ?
> > import Moleskine
> >ImportError: No module named Moleskine
> >
> >
> >Any suggestions? =)
> >
> >thanks in advance,
> >
> >valerio
> >
> >
> >
> >
> >_______________________________________________
> >Moleskine-user mailing list
> >[EMAIL PROTECTED]
> >http://www.opensourcedirectory.org/mailman/listinfo/moleskine-user
> >
>
>
--- End Message ---