Ich habe gerade Python auf meinem Mac auf 2.6.4 aktualisiert. Ich habe aus dem dmg-Paket installiert.
Die binäre schien es nicht zu meinem Python - Pfad richtig eingestellt, so fügte ich '/usr/local/lib/python2.6/site-packages'
in.bash_profile
>>> pprint.pprint(sys.path)
['',
'/Users/Bryan/work/django-trunk',
'/usr/local/lib/python2.6/site-packages',
'/Library/Frameworks/Python.framework/Versions/2.6/lib/python26.zip',
'/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6',
'/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat-darwin',
'/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat-mac',
'/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/plat-mac/lib-scriptpackages',
'/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-tk',
'/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-old',
'/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/lib-dynload',
'/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages']
Anscheinend sind das nicht alle erforderlichen Pfade, da ich iPython nicht ausführen kann.
$ ipython
Traceback (most recent call last):
File "/usr/local/bin/ipython", line 5, in <module>
from pkg_resources import load_entry_point
ImportError: No module named `pkg_resources`
Ich habe Google-Suchen durchgeführt und kann nicht wirklich herausfinden, wie ich sie installieren pkg_resources
oder sicherstellen soll, dass sie auf dem Pfad sind.
Was muss ich tun, um dies zu beheben?