Page 1 of 1

Problem running CEED from Mercurial with PyCEGUIOpenGLRender

Posted: Fri Jun 22, 2012 02:32
by 2escopetastengo
Hello

Im trying to run CEED in Kubuntu 10.11. I followed all the steps listed in:

http://www.cegui.org.uk/wiki/index.php/CEED
viewtopic.php?f=15&t=5566
http://www.cegui.org.uk/wiki/index.php? ... edirect=no

But when I run it I get:

Code: Select all

root@rhyn:~/CEED# PYTHONPATH=.:$PYTHONPATH python bin/ceed-gui
Not trusting file /home/pedro/CEED/.hg/hgrc from untrusted user pedro, group pedro
Not trusting file /home/pedro/CEED/.hg/hgrc from untrusted user pedro, group pedro
Following problems found:
PyCEGUI was found but PyCEGUIOpenGLRenderer is missing! CEED can't render embedded CEGUI without it. (exception: No module named PyCEGUIOpenGLRenderer)
Your environment doesn't meet critical prerequisites! Can't start!


Any ideas of what should I check?

Thanks a lot! :D

Re: Problem running CEED from Mercurial with PyCEGUIOpenGLRe

Posted: Fri Jun 22, 2012 07:57
by CrazyEddie
Hi,

I don't want to insult you by asking this really obvious question, but: Does the PyCEGUIOpenGLRenderer.so file exist alongside the PyCEGUI.so file? :D

CE.

Re: Problem running CEED from Mercurial with PyCEGUIOpenGLRe

Posted: Fri Jun 22, 2012 08:27
by Kulik
What CE said :-)

Also, save yourself much much much hurt and headache by not using root when not required.

Re: Problem running CEED from Mercurial with PyCEGUIOpenGLRe

Posted: Fri Jun 22, 2012 11:37
by 2escopetastengo
Hello, thanks for aswering me.

Maybe my question was too ambiguous. What i really meant to say was "Shoulnt PyCEGUIOpenGLRenderer.so be built via makefile?, If so, why didnt it got built?"

These are my cegui_mk2/build files:

Code: Select all

pedro@rhyn:~/cegui_mk2/build/lib$ ls
libCEGUIBase.so        libCEGUICommonDialogs.so        libCEGUICoreWindowRendererSet.so  libCEGUINullRenderer.so.2      libCEGUITGAImageCodec.so
libCEGUIBase.so.2      libCEGUICommonDialogs.so.2      libCEGUILibXMLParser.so           libCEGUINullRenderer.so.2.0.0  PyCEGUINullRenderer.so
libCEGUIBase.so.2.0.0  libCEGUICommonDialogs.so.2.0.0  libCEGUINullRenderer.so           libCEGUISTBImageCodec.so       PyCEGUI.so


PyCEGUIOpenGLRenderer.so is obviosly not there.

Could it be due to missing dependencies? Any other reason?
Thanks!

Re: Problem running CEED from Mercurial with PyCEGUIOpenGLRe

Posted: Fri Jun 22, 2012 12:03
by CrazyEddie
It is most likely a missing dependency, yes. In this case, probably GLEW. So if you install the 'libglew-dev' package, and then rerun cmake and build, it should then be built ok - I think.

CE