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 :
- Why I am getting these errors in GCP's JupyterLab ? It seems to me that it is
trying to install older version of tensor flow, I do not know why it is doing
that if that is true. - How can I remove this error ?
- If I am getting the error while installing the package then how I am able to
successfully import the modules from it ?
Thank You.