1. 程式人生 > >日常寫BUG——各個平臺下安裝XgBoost

日常寫BUG——各個平臺下安裝XgBoost

我是在win10下面的Anaconda安裝XgBoost出現了問題
剛開始,我直接從Anaconda裡面安裝,像下面那張圖一樣:
這裡寫圖片描述

然而發現會出現下面的錯誤:

DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20. “This module will be removed in 0.20.”, DeprecationWarning)

搜了一下發現如下解決辦法:

  1. anaconda search -t conda xgboost
    會出現如下結果:
    這裡寫圖片描述

  2. 安裝wein64的話輸入的命令為:conda install -c mndrake xgboost
    像下面一樣不報錯就表示成功了
    這裡寫圖片描述

安裝其它平臺的只是換一下包的名稱

這樣發現Anaconda下出現了xgboost
這裡寫圖片描述