Easiest way to install pygtk on Mac OS X

11,804

Solution 1

You need to install pygtk yourself - at least because since some of its dependencies like dextras are not available through PyPI.

Solution 2

I've archive some success running tryton which uses pygtk with Homebrew.

I've uninstalled anything installed before in Homebrew and installed again with:

brew install pygtk

I guess to do the trick is setting the PYTHONPATH as brew says end of install, I do my setup in ~/.bashrc file.

export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH

I hope it helps

Share:
11,804
Natan Yellin
Author by

Natan Yellin

Updated on June 04, 2022

Comments

  • Natan Yellin
    Natan Yellin almost 2 years

    Ideally, I would like to install pygtk using pip or Homebrew. Neither one seems to be possible.

    I am running Leopard.

  • Ib33X
    Ib33X almost 13 years
    So should one first install gtk with homebrew and then pygtk with pip or easyinstall ?