ImportError:没有名为' scikits'

时间:2016-03-16 12:29:39

标签: python anaconda

我在C:\ Anaconda3 \ Lib中有scikits包。 我还使用

检查了pythonpath
import sys
sys.path

路径变量包括程序包可用的路径。我仍面临以下错误:

>>> import scikits
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named 'scikits'

我正在使用以下python / anaconda版本:

  

Python 3.5.1 | Anaconda 2.5.0(64位)| (默认,2016年1月29日,   15:01:46)[winv3上的MSC v.1900 64位(AMD64)]

3 个答案:

答案 0 :(得分:4)

您可以通过以下方式从终端安装scikits:
pip install --user scikits.audiolab

答案 1 :(得分:2)

对于仍然有问题的人(接受的答案已过期),请尝试

pip install scikits.bootstrap

参考:https://pypi.org/project/scikits.bootstrap/

答案 2 :(得分:0)

您也可以试试这个:

import sklearn 

from sklearn import linear_model
# and not
from scikits.learn import linear_model