https://cmake.org/download/
I downloaded the 64 bit zip file: https://cmake.org/files/v3.6/cmake-3.6.2-win64-x64.zip and unzipped it to c:\dev\cmake-3.6.2-win64-x64.
[Edit - For GPU Support] Install CUDA and CUB
Download and install CUDA from here.
Download and unzip [CUB] (https://nvlabs.github.io/cub/).
Build XGBoost
To build XGBoost follow these steps:
Done
Your xgboost files are now in the xgboost\build\Release directory.
Python
To configure the python wrapper follow these steps:
Using the python wrapper
import xgboost xr = xgboost.XGBRegressor() xr.fit(X, y) xr.predict(X_test)