I have a Linux box and am trying to make a game in pure Python. I decided 
to use Pyglet and followed the following steps to try to test pyglet.  Does 
anyone know a way to stop this error? Thanks!


David Saff*


(* on behalf of a younger Saff)

1.Installed Pyglet with sudo pip install pyglet

2.Wrote the following simple test script:

import pyglet

window = pyglet.window.Window()

label=pyglet.text.Label('Hello, world',

                       font_name='Times New Roman',

                       font_size=36,

                       x=window.width//2,

                       y=window.height//2,

                       anchor_x='center',

                       anchor_y='center')

@window.event

def on_draw():

   window.clear()

   label.draw()

pyglet.app.run()

3.Stored test in ~/pyglettest.py

4.Ran python pyglettest.py

5.Recieved output libgl error: Unix signal already caught! Segmentation 
error

-- 
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