python – DeprecationWarning when importing Scikit-learn

I’m using JupyterLab.

When importing some packages, or executing some functions from scikit-learn,
very long list of deprecation warnings fill the screen.

enter image description here

enter image description here

enter image description here
I googled about this problem and upgraded the packages (scikit-learn, numpy), but I still get the warnings.

pip install scikit-learn --upgrade
Requirement already satisfied: scikit-learn in c:users...appdatalocalprogramspythonpython39libsite-packages (1.0.2)
Requirement already satisfied: threadpoolctl>=2.0.0 in c:users...appdatalocalprogramspythonpython39libsite-packages (from scikit-learn) (3.0.0)
Requirement already satisfied: joblib>=0.11 in c:users...appdatalocalprogramspythonpython39libsite-packages (from scikit-learn) (1.1.0)
Requirement already satisfied: numpy>=1.14.6 in c:users...appdatalocalprogramspythonpython39libsite-packages (from scikit-learn) (1.22.1)
Requirement already satisfied: scipy>=1.1.0 in c:users...appdatalocalprogramspythonpython39libsite-packages (from scikit-learn) (1.7.2)

Some say that these are not problems because they are just warnings and not harmful.

But it’s very annoying. How can I solve this problem?

Read more here: Source link