I've created a clean conda enviroment with Python 3.7:
conda create -n pycaret python=3.7
Then I installed pycaret:
pip install pycaret[full]
I opened jupyter Notebook from the conda prompt, and followed the first tutorial from here: https://github.com/pycaret/pycaret/blob/master/examples/PyCaret%202%20Classification.ipynb
But when I run this block:
from pycaret.classification import *
clf1 = setup(data, target = 'Purchase', session_id=123, log_experiment=True, experiment_name='juice1')
I get this error:
AttributeError: 'Simple_Imputer' object has no attribute 'target_variable'
What's happening? I tried different installations, different python versions, but always got the same error.
Many thanks