I can pip install pycaret fine, but when I run setup() i get thrown an error that indicates lightgbm was not installed correctly:
setup(data=mmm[features + [target]],target=target, session_id=2)
ImportError: cannot import name 'is_dtype_sparse' from 'lightgbm.compat' (/Users/nickdimmitt/opt/anaconda3/envs/pga/lib/python3.8/site-packages/lightgbm/compat.py)`
I have tried installing lightgbm with pip and conda seperately, no luck. Also have tried to edit the source code for lightgbm so it isn't dependet on 'is_dtype_sparse' but there has to be an easier solution.