如何在 mac Mojave 中安装 pycaret python 库
How to install pycaret python library in mac Mojave
我想在 Mac Mojave 10.14 中安装 pycaret
库。
然而,当我尝试执行 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
的最佳方法是什么?
这可能有帮助(来自 https://pycaret.org/install/)
为MACOS
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
我想在 Mac Mojave 10.14 中安装 pycaret
库。
然而,当我尝试执行 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
的最佳方法是什么?
这可能有帮助(来自 https://pycaret.org/install/)
为MACOS
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