This file contains 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
#!/usr/bin/env bash | |
# bootstrap.sh | |
# author: Luke de Oliveira ([email protected]) | |
# boostrap script for clean (CPU) EC2 instance setup for machine learning. | |
# -- get a basic build up | |
sudo apt-get update && sudo apt-get upgrade | |
sudo apt-get install -y build-essential | |
# -- dev builds of key software |