I'm having issues getting boto3 installed on EMR. Here is the bootstrap script I'm currently using:
#!/bin/bash
# Install Python 3 kernel
sudo yum install python3
sudo yum install python3-pip
sudo pip3 install -U boto3
I checked the logs and it says that boto3 was successfully installed, but when I try to import it in a Jupyter notebook I get ModuleNotFoundError: No module named 'boto3'