Merge pull request #1068 from Laurae2/master

Updated obsolete installation instructions
This commit is contained in:
Tianqi Chen
2016-04-26 19:50:06 -07:00
3 changed files with 56 additions and 7 deletions

View File

@@ -26,6 +26,12 @@ For up-to-date version, please install from github.
`windows folder <../windows/>`__. See also the `installation
tutorial <https://www.kaggle.com/c/otto-group-product-classification-challenge/forums/t/13043/run-xgboost-from-windows-and-python>`__
from Kaggle Otto Forum.
- Add MinGW to the system PATH in Windows if you are using the latest version of xgboost which requires compilation:
```python
import os
os.environ['PATH'] = os.environ['PATH'] + ';C:\\Program Files\\mingw-w64\\x86_64-5.3.0-posix-seh-rt_v4-rev0\\mingw64\\bin'
```
Examples
--------