Tuesday, April 1, 2008

Install Accerciser

When I run my accerciser program, It return me some errors like "no gtksourceview module" "IPython module error". Here, I write down my install step to resolve those problems:
  • install gtksourceview-1.8.5

yast -i gtksourceview18

yast -i gtksourceview18-devel

  • install Ipython

yast -i IPython

  • install pygtksourceview
download form http://sourceforge.net/project/showfiles.php?group_id=112429&package_id=121748&release_id=272585

./configure

./make

./make install

(accerciser will return you “no gtksourceview module” if without this package)

  • install accerciser
download from http://live.gnome.org/Accerciser

./configure –prefix /usr

./make

./make install

  • run accerciser

./usr/bin/accerciser


1 comment:

Sandy said...

Thanks for posting this! I had just been ignoring that error, but now that you've written this up I've gone ahead and fixed it.

Before compiling pygtksourceview I had to install the following packages from yast:

python-devel
python-gtk-devel (which brought in python-cairo-devel, python-gobject2, and python-gobject2-devel)
python-gnome-devel
gtksourceview18-devel

Then everything worked (I didn't have to re-install Accerciser).