pip install lightgbm
使用时直接调用:
import lightgbm as lgb
然后在notebook中使用时会报错:
Reason: image not found
卸载错误安装
pip uninstall lightgbm
安装cmake依赖
brew install cmake
brew install gcc
如果已安装会显示gcc版本。
git clone --recursive https://github.com/Microsoft/LightGBM ;
cd LightGBM
mkdir build ;
cd build
配置环境变量
export CXX=g+±9 CC=gcc-9
上面的gcc版本显示为9的情况。
编译构建
命令行执行:
make -j2
2为cpu核数。
安装LightGBM
进入下载的LightGBM目录下面的Python-package目录下,能找到setup.py文件
cd …/python-package
python setup.py install (特别注意:不要用pip install lightgbm)
来源:CSDN
作者:tunghao
链接:https://blog.csdn.net/tunghao/article/details/104000645