I am trying to add a path to sys.path fix an error importing numpy. If I do:
import sys
sys.path.append('/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages')
print sys.path
then path that I just added shows up and import numpy works. However, if I restart IDLE and try to import numpy again, I get an error. How can I make the path stay permanently?
Snow Leopard, Python 2.6