我为{3.6}安装了scikit-learn
以及numpy
和scipy
以及conda
。但是我无法在python3.6中导入sklearn
。有什么问题,我该如何解决?
以下是我在conda list
中看到的内容:
numpy 1.12.1 py36_0
scipy 0.19.0 np112py36_0
scikit-learn 0.19.0 np112py36_0
以下是我尝试导入sklearn
的错误消息:
Python 3.6.0 (v3.6.0:41df79263a11, Dec 22 2016, 17:23:13)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sklearn
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'sklearn'
我正在使用OS X和conda 4.3.24。