0

我想pycaret在 Mac Mojave 10.14 中安装库。

但是,当我尝试这样做时,pip3 install pycaret我得到以下错误-

XGBoostLibraryNotFound: Cannot find XGBoost Library in the candidate path, did you install compilers and run build.sh in root path?

当我这样做时,conda list我会得到一个安装的库列表。但是,我在那里找到了 2 个 xgboost 库 -

xgboost                   1.0.2            py36h0130604_1    conda-forge
xgboost                   1.1.0                     <pip>

我在网上看到了一些链接,其中 xgboost 是从源代码安装的。但是,我不想走那条路。

最好的安装方法是pycaret什么?

4

1 回答 1

2

这可能会有所帮助(来自https://pycaret.org/install/

对于 MAC 操作系统

MAC 用户必须使用 Homebrew 单独安装 LightGBM,或者可以使用 CMake 和 Apple Clang(或 gcc)构建它。请参阅以下说明:

安装 CMake(3.16 或更高版本):

>> brew install cmake
Install OpenMP
>> brew install libomp

在终端中运行以下命令:

git clone --recursive https://github.com/microsoft/LightGBM ; cd LightGBM
mkdir build ; cd build
cmake ..
make -j4
于 2020-08-11T15:44:48.223 回答