Skip to content

Data to Fish

  • Home
  • Tutorials
  • About

How to Check the Scikit-Learn Version Installed

June 18, 2021

You can check the Scikit-Learn version installed using this syntax:

import sklearn
print(sklearn.__version__)

Run the code in Python, and you’ll get the version of Scikit-Learn. Here is an example of the version installed that you may get:

0.22.2
Categories Python
Post navigation
How to Change Strings to Lowercase in Pandas DataFrame
Add Prefix to Each Column Name in Pandas DataFrame

Tutorials

Python Tutorials
R Tutorials
Julia Tutorials
Batch Scripts

Recent Posts

  • How to Iterate over a List of Lists in Python
  • How to Iterate over a Dictionary in Python

DATA TO FISH
Privacy Policy - Cookie Policy - Terms of Service
Copyright © | All rights reserved

Home » Python » How to Check the Scikit-Learn Version Installed