I am trying to run this following bootstrap script in AWS EMR and it is failing without providing an error message. I have setup EMR cluster for applications: Spark, Hive, Ganglia, and Livy.
!/bin/bash
sudo pip-3.6 install -U \ matplotlib \ pandas \ spark-nlp
I am using EMR version 6. Previously we used just "pip" instead of "pip-3.6" but it still error out hence we decided to try out with "pip-3.6" since we assumed that EMR 6 has python 3.6.
Kindly let me know what could be wrong with this.
Thanks!