I thought it was some kind of compiler error as well, but I think this
was *user* error. I tried it this morning on the PPC Mac using a new
terminal session and it worked fine. I was able to run some of the
demos without resorting to any funky sys.path manipulations. I'll try
the Intel Mac tonight. If I have issues over there, I will perform the
steps you reccommend.
FWIW, (and please excuse a novice python question) - I had the
uncompiled lepton still sitting in ~/Downloads which was my current
directory when I went into the interactive python prompt in terminal.
When I type
import lepton
would Python try to import the uncompiled version in ~/Downloads
before looking through sys.path for the module?
(I'll try to duplicate this behavior at home tonight if I have time).
On Jul 7, 11:25 am, Casey Duncan <
casey.dun...@gmail.com> wrote:
> Hello,
>
> It should work fine on 2.5, though Apple's built-in 2.5 is slightly
> non-standard. It seems as though the modules did not compile properly.
> Try importing it manually from the python prompt:
>
> import lepton.group
>
> I suspect that will fail, which would indicate that things did not
> compile right. If that's the case, try:
>
> import lepton
> lepton.__path__
>
> And list the contents of the directory returned. What do you see?
>
> -Casey
>