Skip to content

Instantly share code, notes, and snippets.

@mjjimenez
Last active October 24, 2019 02:54
Show Gist options
  • Save mjjimenez/254ffa9eea12a2666b27ab15ccfb6048 to your computer and use it in GitHub Desktop.
Save mjjimenez/254ffa9eea12a2666b27ab15ccfb6048 to your computer and use it in GitHub Desktop.
Install xgboost on ec2 instance
# From 'Manuel Amunategui' https://www.youtube.com/watch?v=VncfC5GeqGs
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh
bash ~/miniconda.sh -b -p $HOME/miniconda
export PATH="$HOME/miniconda/bin:$PATH"
pip install --upgrade pip
pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
sudo yum groupinstall -y 'Development Tools'
pip install xgboost
pip install lightgbm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment