I'm trying to submit a Python script on AWS EMR that imports numpy but I get
ImportError: No module named numpy
I tried using one of the answers here: No module named numpy when spark-submitting. I created a bootstrap_actions.sh script that includes
sudo yum install python-numpy python-scipy -y
and I run the script when I create the cluster but still get the import error. Any solution on how can I get import numpy to work?