在我的OSX笔记本电脑上,我已经安装了Sci Kit Learn,方法是按照此页面上的说明将此命令pip install -U numpy scipy scikit-learn
复制并粘贴到终端。
这是我再次在终端上运行命令时得到的结果:
Requirement already up-to-date: numpy in /usr/local/lib/python2.7/site- packages
Requirement already up-to-date: scipy in /usr/local/lib/python2.7/site-packages
Requirement already up-to-date: scikit-learn in /usr/local/lib/python2.7/site-packages
Cleaning up...
这是我在 Python 3.3.4 上运行from sklearn import datasets
时收到的错误消息。空闲:(我正在尝试这个例子)
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
from sklearn import dataset
ImportError: No module named 'sklearn'
这里有什么问题?
您已经为 python 2.7 安装了软件包,如您在日志中看到的那样
Requirement already up-to-date: numpy in /usr/local/lib/python2.7/site-packages
你运行的是Python 3.3.4。
因此,要么使用 python 2.7.x 运行它,要么安装 python3.x 的软件包。如何?在这里查看