Quote:
I have installed the package pygtk2 from the repos. I have used nautilus to run a search on the whole file system for pygtk-2.0.pc and nothing came up.
|
The .pc files are located in /usr/lib/pkgconfig and they are used by pkg-config to identify the installed version of a software, e.g:
Code:
pkg-config --modversion pygtk-2.0
in my system returns 2.12.1
Quote:
If I have the right packages installed, just in a strange location, how can I find where they are? and what command will tell pkg-config about it?
|
In this case you can use the env. variable PKG_CONFIG_PATH to change the search path of .pc files:
Code:
export PKG_CONFIG_PATH=/path/to/somedir:$PKG_CONFIG_PATH
Quote:
Otherwise, what other packages do I need to install?
|
Your package manager should be able to resolve dependencies and d/l all the needed software. Afaik pygtk depends on pygobject.