On Wed, Feb 05, 2003 at 09:39:13PM -0500, Met @ Uber wrote:
> It says I'm running version (1, 99, 12). I currently have these RPM's
> Do I need to upgrade?
Latest pygtk release is 1.99.14. That has most of the important additions
and fixes (there are a lot). You may want to download it to look at the
ChangeLog. However, the CVS version is just as easy to install, and there
is no risk in installing it as it gets installed to a separate gtk-2.0
directory.
export CVSROOT=':pserver:[EMAIL PROTECTED]:/cvs/gnome'
cvs login
cvs -z3 co gnome-python
cd gnome-python/pygtk
./autogen.sh --prefix /usr
make
make install
I prefer to put pygtk in /usr as I don't have to mess with PYTHONPATH then.
This puts pygtk in it's own directory, so it doesn't overwrite the RH files.
You then load it with
import pygtk; pygtk.require('2.0')
import gtk
Just leave out the top line to load the original version of the module.
Dave Cook
_______________________________________________
pygtk mailing list [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/