-
-
Save eliasah/1cefe9179cb58bcd7a06a319174a42c6 to your computer and use it in GitHub Desktop.
XGBoost on AWS EMR
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 | |
sudo yum -y install make | |
sudo yum -y update | |
sudo yum -y install gcc gcc-c++ git | |
git clone https://github.com/dmlc/xgboost --recursive | |
cd xgboost | |
make -j4 | |
cd python-package; sudo python setup.py install | |
export PYTHONPATH=~/xgboost/python-package |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment