Created
August 21, 2020 15:13
-
-
Save nmagee/acb6249ba451c03fd921f0d6d0f442d5 to your computer and use it in GitHub Desktop.
Bootstraps an Amazon Linux EC2 instance with some basic tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| /usr/bin/yum update -y | |
| /bin/amazon-linux-extras install -y epel | |
| /usr/bin/yum install -y git python3 python3-dev python3-pip nfs-utils | |
| /bin/pip3 install boto3 pandas requests |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment