2014-04-09 13 views
8

Stavo cercando di installare il pacchetto python scikit-learn. Continuo a ricevere un erroreProblemi di installazione di scikit-learn in Python

ho cercato

pip install scikit­-learn 

L'errore si presenta come segue. Qual è il problema della mia installazione?

compile options: '-I/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/core/include -c' 

c++: sklearn/svm/src/libsvm/libsvm_template.cpp 

clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future] 

clang: note: this will be a hard error (cannot be downgraded to a warning) in the future 

clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future] 

clang: note: this will be a hard error (cannot be downgraded to a warning) in the future 

error: Command "c++ -fno-strict-aliasing -fno-common -dynamic -arch x86_64 -arch i386 -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch x86_64 -arch i386 -pipe -I/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/core/include -c sklearn/svm/src/libsvm/libsvm_template.cpp -o build/temp.macosx-10.9-intel-2.7/sklearn/svm/src/libsvm/libsvm_template.o" failed with exit status 1 

---------------------------------------- 
Cleaning up... 
Command /usr/bin/python -c "import setuptools, tokenize;__file__='/private/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-GYuqQN-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /private/tmp/pip_build_root/scikit-learn 
Storing debug log for failure in /Users/johnkuk/Library/Logs/pip.log 

Ho anche provato diversi modi per installare il pacchetto. Da easy_install, ho anche ricevuto il seguente messaggio di errore.

clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future] 
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future 
clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future] 
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future 
error: Setup script exited with error: Command "c++ -fno-strict-aliasing -fno-common -dynamic -arch x86_64 -arch i386 -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch x86_64 -arch i386 -pipe -I/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/core/include -c /private/tmp/easy_install-oD3dwa/scikit-learn-0.14.1/sklearn/svm/src/libsvm/libsvm_template.cpp -o build/temp.macosx-10.9-intel-2.7/private/tmp/easy_install-oD3dwa/scikit-learn-0.14.1/sklearn/svm/src/libsvm/libsvm_template.o" failed with exit status 1 
/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/distutils/misc_util.py:252: RuntimeWarning: Parent module 'numpy.distutils' not found while handling absolute import 
    from numpy.distutils import log 
+0

Questo sembra un problema con l'installazione di LLVM. Sei sicuro di avere l'ultima versione degli strumenti XCode CLI? – inspectorG4dget

+0

scikit-learn prende il suo compilatore da NumPy e sembra che il tuo NumPy sia stato compilato con GCC, quindi devi compilare questo. –

risposta

6

Ho avuto lo stesso problema di oggi, dopo aver provato molte cose quello che lavoravo mi è stato la creazione alcune variabili d'ambiente prima di installare con pip risolto il problema per me:

export CFLAGS=-Qunused-arguments 
export CPPFLAGS=-Qunused-arguments 

E quindi installare con sudo :

sudo -E pip install -U scikit-learn 

E 'sembra essere un problema con l'aggiornamento Xcode (5.1.1 per me), non accetta '-mno-fuso-madd' come argomento, prima che lo lanciò un avvertimento, è sapere un errore, i primi due comandi ignorano gli argomenti non utilizzati che sono gli stessi che generano l'errore.

Spero che aiuti, eventuali commenti/correzioni sono i benvenuti.

+2

Ha funzionato anche per me, eseguendo Mavericks – themaestro

Problemi correlati