我在C:\ Anaconda3 \ Lib中有scikits包。 我还使用
检查了pythonpathimport 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)]
答案 0 :(得分:4)
您可以通过以下方式从终端安装scikits:
pip install --user scikits.audiolab
答案 1 :(得分:2)
对于仍然有问题的人(接受的答案已过期),请尝试
pip install scikits.bootstrap
答案 2 :(得分:0)
您也可以试试这个:
import sklearn
from sklearn import linear_model
# and not
from scikits.learn import linear_model