When I follow the website ( https://www.kaggle.com/wiki/GettingStartedWithPythonForDataScience ) and enter python makeSubmission.py I get the following error message:
ImportError: No module named sklearn
I think I already installed the following: Python 3.4 for windows sciPy, NumPy and matplotlib Setuptools scikit learn PyCharm
Then I opened the "Python 3.4 command line" and typed import sys; print(sys.__path__) import sys; print(sys.__path__) , but received a message
Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module object has no attribute '__path__'
Anyone can help?
source share