web-dev-qa-db-fra.com

erreur d'installation dans sklearn pour python3

Quand je lance la commande Sudo pip3 install -U scikit-learn

Je reçois une erreur étrange.

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

voici le lien avec le fichier journal. https://drive.google.com/file/d/0B3FIuCA5bZUaUC1pd21MTUFxWkU/edit?usp=sharing

Je n'ai aucune idée de la façon de résoudre le problème.

2
Donbeo

Il existe un numéro avec les fichiers Cython C pré-compilés (compatibilité avec Python 3.4.0) avec la version de pypi.

Pour installer correctement scikit-learn, utilisez plutôt le dépôt git (testé avec succès le 14.04):

Sudo pip3 install git+https://github.com/scikit-learn/scikit-learn.git
5
Sylvain Pineau