SKLearner Home | About | Contact | Examples

Uninstall Scikit-Learn with conda

scikit-learn can be easily uninstalled using Conda, a popular package manager for Python and R.

This uninstallation procedure will work on Windows, macOS, and Linux platforms where Conda is installed.

To uninstall scikit-learn, simply run the following command in your terminal:

conda remove scikit-learn

To confirm that scikit-learn was successfully uninstalled, you can try importing it in a Python script or interactive shell:

import sklearn

Running the example gives an output like:

ImportError: No module named 'sklearn'


See Also