Hi@akhtar,
It seems Sklearn is not installed properly in your system. You can use the below-given command to install sklearn.
$ pip3 install -U scikit-learn
Also, make sure you have installed NumPy and Scipy library.
$ pip3 install numpy
$ pip3 install scipy
I hope this will help you.