I have installed pycaret and xgboost as follows:
!pip install pycaret==2.3.10 markupsafe==2.0.1 pyyaml==5.4.1 --use-deprecated=legacy-resolver -qq
!pip install xgboost
But when I try to create the following Xgboost model, it throws an error "Estimator xgboost not available."
xgboost = create_model('xgboost')
Why is this? What am I missing?