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
# configs | |
PYTHON_VER="3.8" | |
PYLIBPATH="/mnt/python" | |
PKGS=(numpy scipy tensorflow xgboost) | |
sudo yum -y update | |
sudo yum install -y amazon-efs-utils | |
# Set up env vars | |
PYTHON_VER_YUM="${PYTHON_VER/\./}" |
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
#!/bin/bash | |
DISTRO="ubuntu" | |
DISTROCODE="14.04" | |
ARCH="x86_64" | |
HOST="https://download3.rstudio.org" | |
ShinyV=$(curl -s https://www.rstudio.com/products/shiny/download-server/ |\ | |
grep 'Download RStudio Shiny Server' |\ | |
sed 's/<[^>]*>//g' |\ |