SKLearner Home | About | Contact | Examples

Upgrade Scikit-Learn on Fedora Linux

scikit-learn can be easily installed on Fedora Linux using pip, the standard package installer for Python.

pip is included by default with Python on Fedora Linux. This installation procedure will work on any recent version of Fedora.

To install or upgrade scikit-learn, simply run the following command in your terminal:

pip install -U scikit-learn

To confirm that scikit-learn was successfully installed, you can import it in a Python script or interactive shell and print out the version number:

import sklearn
print(sklearn.__version__)

Running the example gives an output like:

1.5.0


See Also