apt
apt

Reputation: 299

installing pygobject on mac for Python 2.6

Does anyone know how to install PyGObject on Mac OSX for Python 2.6. The current distribution available on darwinports is using Python2.4. I want a package using Python2.6

Alternatively, has anyone tried installing it from sources on a Mac?

Upvotes: 4

Views: 7191

Answers (3)

Creak
Creak

Reputation: 4565

If you want to use pygobject with Python 3 and GTK 3:

brew install pygobject3

Upvotes: 1

D R
D R

Reputation: 22500

If you have Macports you can simply do

port install py26-gobject

With Homebrew it would be:

brew install pygobject

Upvotes: 9

apt
apt

Reputation: 299

ah found it : http://py26-gobject.darwinports.com/

nevermind!

Upvotes: -1

Related Questions