On 29/01/14 09:53, [email protected] wrote:
> Thank you very much the fast response!
> 
> # I'm sorry of course I meant pyglet 1.1.4, i just reinstalled with 
> 
> pip install --upgrade http://pyglet.googlecode.com/archive/tip.zip
> 
> This found pyglet 1.1.4 and uninstalled it automatically.

OK, if you installed pyglet using apt-get I would uninstall it with
apt-get and then reinstall tip.

It's not a good idea to mix pip installed stuff and your Linux
distribution package manager things :)

> [...]
> Then I did "ldd /usr/lib/libavbin.so" and got:
> 
> ldd /usr/lib/libavbin.so
> linux-gate.so.1 =>  (0x00204000)
> libbz2.so.1.0 => /lib/i386-linux-gnu/libbz2.so.1.0 (0x00110000)
> libz.so.1 => /lib/i386-linux-gnu/libz.so.1 (0x00121000)
> libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0x00205000)
> /lib/ld-linux.so.2 (0x007b7000)

That looks OK to me!

(I'm using avbin 11 that has libbz2 statically linked, that's why it
didn't show up in my output)

> 
> Then I tried to create a symbolic link in that destination
> ln -sf /usr/lib/libavbin.so /lib/libavbin.so
> 
> But still the same error when I try to run the simple audio.py.

Is your system 32-bit? Your AVBin version is i386, can you check that
you're using a 32-bit Python?

python -c 'import struct;print( 8 * struct.calcsize("P"))'

Should print 32; if it prints 64 you need to remove that AVBin version
and install the 64-bit version.

That could explain why pyglet is failing to find AVBin.

Regards,

Juan

-- 
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyglet-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to