I just installed the py27-numpy package via MacPorts and python will not find the module when I use this command: import scipy
import scipy
I used the help(\'m
help(\'m
MacPorts should install Python packages in /opt/local/Library/Frameworks/Python.framework/2.7/site-packages by default. So make sure to set $PYTHONPATH environment variable in your .profile file:
/opt/local/Library/Frameworks/Python.framework/2.7/site-packages
$PYTHONPATH
.profile
export PYTHONPATH="/opt/local/Library/Frameworks/Python.framework/Versions/2.7/site-packages"