I am trying to install GNURadio through PyBOMBS in a virtualenv. When I run pybombs prefix init ~/prefix -a myprefix -R gnuradio-default
, the installation fails with
-- Python checking for pygtk >= 2.10.0 - not found
After seeing this, I tried to install PyGTK. I first installed pycairo through pip using instructions from this GitHub issue, then pygobject with pip install pygobject
. After doing these two things, I am able to import cairo
and import gi
but unable to import gobject
. However, I successfully built and installed pygtk from source following these instructions.
After installing these things, the PyBOMBS installer still yields the same error message about not finding PyGTK. I have linked the full PyBOMBS output here.
I have also tried installing python-gtk2-dev
, python-gi
, python-gi-cairo
, and gir1.2-gtk-2.0
through apt, though I would prefer not to install packages globally if possible. PyBOMBS yielded the same output after installing those apt packages.
I've been ripping my hair out over this for the last two days, so I greatly appreciate any and all suggestions y'all have :)