Quand je fais pip install xgboost
dans l'environnement python3 construit avec pyenv, cela dit que clang-omp ++
est manquant. Quand j'ai fait brew install clang-omp
, il est venu avec llvm
, donc on m'a dit de le mettre. Cependant, on dit qu'il n'y a pas de brew install llvm
. J'ai cherché diversement sur Google et je savais que si je mettais un lien symbolique, ce serait gérable
brew install llvm
ln -s /usr/local/opt/llvm/bin/clang /usr/local/bin/clang-omp
ln -s /usr/local/opt/llvm/bin/clang++ /usr/local/bin/clang-omp++
ln -s /usr/local/opt/llvm/lib/libomp.dylib /usr/local/lib/libomp.dylib
pip install xgboost
Je me demande si ça va vraiment ...
Recommended Posts