I am trying to install PyCaret in GCP(Google Cloud Platform) JupyterLab. I am getting error while installing the PyCaret package.
I was using !pip install pycaret
to install the package but I was getting this error.
ERROR: Cannot uninstall 'llvmlite'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
Then I have used !pip install pycaret --ignore-installed llvmlite
But then I was getting these other errors.
But even after these errors when I tried to import different modules from PyCaret library, I was able to do so. Please let me know if anyone is aware that :
Thank You.
The error only means that based on the environment that you are running the install in, there is incompatibility between what pycaret is asking for and what is already installed based on other packages. Even with these warnings, pycaret may still run because at least some version of the required libraries are installed.
My recommendation would be to install pycaret in a clean environment. That way, there is no interference with other packages.