We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I insalled python 3.12.0 64bit under windows server 2019
import xgboost as xgb import numpy as np
np.random.seed(42)
run it and it has the following error xgboost.core.XGBoostError: XGBoost Library (xgboost.dll) could not be loaded. Likely causes:
OpenMP runtime is not installed
brew install libomp
You are running 32-bit Python on a 64-bit OS
It has OpenMP support, why it shows 32-bit python '32bit', 'WindowsPE'
how to fix it
The text was updated successfully, but these errors were encountered:
Could you please share how did you install XGBoost and Python?
Also, please share the full backtrace and error message
Sorry, something went wrong.
No branches or pull requests
I insalled python 3.12.0 64bit under windows server 2019
import xgboost as xgb
import numpy as np
np.random.seed(42)
run it and it has the following error
xgboost.core.XGBoostError:
XGBoost Library (xgboost.dll) could not be loaded.
Likely causes:
OpenMP runtime is not installed
Mac OSX users: Run
brew install libomp
to install OpenMP runtime.You are running 32-bit Python on a 64-bit OS
It has OpenMP support, why it shows 32-bit python
'32bit', 'WindowsPE'
how to fix it
The text was updated successfully, but these errors were encountered: