I\'ve researched this question pretty thoroughly and can\'t seem to find an answer.
I\'m running a virtualenv and am trying to install numpy, on EC2 using Python 2.
Ok - answered my own question:
pip seems to install numpy here:
/home/ec2-user/dev/lib64/python2.7/
but python isn't loading this as path as a library path.
Solution:
mv ~/dev/lib64/python2.7/dist-packages/numpy ~/dev/lib/python2.7/dist-packages/numpy
Hopefully this helps someone out!