Windows 7 Professional 64bit Python 2.7.9 (Anaconda) Visual Studio 2010 Professional
Laden Sie xg boost direkt unter Laufwerk C herunter.
> cd c:\
> git clone https://github.com/dmlc/xgboost.git
Da es in "c: \ xgboost \ windows" "xgboost.sln" gibt,
Öffnen Sie in Visual Studio und erstellen Sie es im Release-Modus neu.
Es scheint, dass "jni.h" für "xgboostjavawrapper" hier erforderlich ist.
Ich habe nicht vor, es von Java aus zu verwenden, also entlade xgboostjavawrapper
und schließe es von der Lösung aus.
Wenn die Neuerstellung erfolgreich ist, führen Sie [setup.py] aus.
> cd c:\xgboost\python-package
> python setup.py install
Überprüfen Sie, ob die Installation erfolgreich ist.
> python
>>> import xgboost as xgb
OK, wenn keine Fehler vorliegen.
Recommended Posts