I want to import sklearn but there is no module apparently:
ModuleNotFoundError: No module named \'sklearn\'
I am using Anaconda and
This happened to me, I tried all the possible solutions with no luck!
Finaly I realized that the problem was with Jupyter notebook environment, not with sklearn!
I solved the problem by re-installing Jupyter at the same environment as sklearn
the command is: conda install -c anaconda ipython
. Done...