sklearn for python3 安装错误

sklearn for python3 安装错误

当我运行命令时 sudo pip3 install -U scikit-learn

我收到一个奇怪的错误。

Cleaning up...
Command /usr/bin/python3 -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/scikit-learn/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-hrwadcyq-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/scikit-learn
Storing debug log for failure in /home/donbeo/.pip/pip.log

这是日志文件的链接。 https://drive.google.com/file/d/0B3FIuCA5bZUaUC1pd21MTUFxWkU/edit?usp=sharing

我不知道如何解决这个问题。

答案1

有一个问题使用 pypi 版本的预编译 Cython C 文件(兼容 Python 3.4.0)。

为了正确安装scikit-learn,请使用 git repo(在 14.04 上测试成功):

sudo pip3 install git+https://github.com/scikit-learn/scikit-learn.git

相关内容