1

I need json, pyobjc and ideally psyco as well.

I got all but pyobjc working on active python 2.6. How do I successfully install pyobjc properly?

Thank you.

Matthew Mitchell
  • 5,293
  • 14
  • 70
  • 122

2 Answers2

1

To install pyobjc in ActivePython 2.6:

/usr/local/bin/pip-2.6 install --user pyobjc
Sridhar Ratnakumar
  • 81,433
  • 63
  • 146
  • 187
0

I ended up installing it with easy install:

easy_install-2.6 pyobjc==2.2

That worked.

Matthew Mitchell
  • 5,293
  • 14
  • 70
  • 122