2015-09-29 9 views
6

Ich versuche, auf meinem Mac zu installieren xgboost für Python 3.4, aber ich erhalte die folgende Fehlermeldung nach "PIP3 setup.py install":Python xgboost auf dem Mac installiert

File "<string>", line 20, in <module> 

    File "/private/var/folders/_x/rkkz7tjj42g9n8lqq5r0ry000000gn/T/pip-build-2dc6bwf7/xgboost/setup.py", line 28, in <module> 

    execfile(libpath_py, libpath, libpath) 

NameError: name 'execfile' is not defined 

Wenn es mit dem Laufen - v Option zum Abrufen der ausführlichen Ausgabe Der Fehler sieht folgendermaßen aus:

Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/_x/rkkz7tjj42g9n8lqq5r0ry000000gn/T/pip-build-2dc6bwf7/xgboost 
Exception information: 
Traceback (most recent call last): 
    File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/pip/basecommand.py", line 232, in main 
    status = self.run(options, args) 
    File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/pip/commands/install.py", line 339, in run 
    requirement_set.prepare_files(finder) 
    File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/pip/req/req_set.py", line 385, in prepare_files 
    req_to_install.run_egg_info() 
    File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/pip/req/req_install.py", line 358, in run_egg_info 
    command_desc='python setup.py egg_info') 
    File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/pip/utils/__init__.py", line 749, in call_subprocess 
    % (command_desc, proc.returncode, cwd)) 
pip.exceptions.InstallationError: Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/_x/rkkz7tjj42g9n8lqq5r0ry000000gn/T/pip-build-2dc6bwf7/xgboost 

Wie kann ich dieses Problem lösen?

Antwort

2

Ich denke, dass xgboost nur als Python 2-Paket über Pip verfügbar ist. Es gibt zwei Möglichkeiten, damit es funktioniert.

  1. Sie verwenden Python 2 und installieren es mit pip.
  2. Sie können xgboost für Python 3 manuell erstellen. Laden Sie einfach die Quelle von Github und bauen Sie es: Öffnen Sie Terminal. Auschecken von Git: Git Klon https://github.com/dmlc/xgboost.git. bilde es: cd xgboost; machen; CD-Hülle; python.py setup install --user
+3

1. Ich bin immer gleichen Fehler in 2.7 – Anton

+0

2. funktionierte für mich mit cd xgboost; ./build.sh; python setup.py install --user – Anton

5

Das funktionierte für mich.

OS: OSX El Capitan

Schritt-1: cd xgboost; ./build.sh
Schritt-2: cd python-package; python setup.py install

+1

Funktioniert auch mit OS X Yosemite –

0

vielleicht sollten Sie

cd xgboost; cp make/minimum.mk ./config.mk; make -j4 

anstelle von

cd xgboost; ./build.sh 

als per "Build On OSX" Abschnitt von Build-Dokument

auch vielleicht ist dies ein duplicate