Last active
October 24, 2019 02:54
-
-
Save mjjimenez/254ffa9eea12a2666b27ab15ccfb6048 to your computer and use it in GitHub Desktop.
Install xgboost on ec2 instance
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
# 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