I installed Anaconda on 64bit windows and I also installed scikit-learn using \"conda install scikit-learn\". However I can\'t find scikit-learn when I print out all modules
As mentioned in the comments, you import the scikit-learn module using:
import sklearn
If it still does not work then try to activate environment which is by default root, if you have not created separate environment while installing.
Just run from cmd : activate {env_name}
For your case, it would be : activate root
then run simple python file to check scikit-learn is imported or not.
demo.py
import sklearn
See output in image below :
enter image description here