Trouble importing pyROOT on Mac OS X 10.11.1

Hi,

typing ‘which python’ returns: dhcp-18-189-16-11:~ edward$ which python /Library/Frameworks/Python.framework/Versions/2.7/bin/python

I’ve attempted to do this. My bash file is now:

[code]# Setting PATH for Python 2.7

The orginal version is saved in .bash_profile.pysave

PATH=“/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}”
export PATH
export LD_LIBRARY_PATH=/Library/Frameworks/Python.framework/Versions/2.7/lib

ROOT
export ROOTSYS=/root
export PATH=$ROOTSYS/bin:$PATH
export LD_LIBRARY_PATH=$ROOTSYS/lib:$LD_LIBRARY_PATH

#PYROOT
export PYTHONDIR=/Library/Frameworks/Python.framework/Versions/2.7/bin/
export PATH=$ROOTSYS/bin:$PYTHONDIR/bin:$PATH
export LD_LIBRARY_PATH=$ROOTSYS/lib:$PYTHONDIR/lib:$LD_LIBRARY_PATH
export PYTHONPATH=$ROOTSYS/lib:$PYTHONPATH
[/code]

Trying to import ROOT still returns the same error: >>> import ROOT Fatal Python error: PyThreadState_Get: no current thread Abort trap: 6

Is there anything else that you suggest I do?

Thanks,

Edward