2017-07-12 4 views
0

Ich habe Probleme mit dem Import von Sklearn.Python - Sklearn - ImportError

Ich habe das Paket durch Pip installiert, aber Python kann die Bibliothek nicht importieren. Ich benutze Python 2.7 in einer Windows 10-Umgebung.

from sklearn.tree import DecisionTreeClassifier, export_graphviz 

Der Fehler ich erhalte, ist die folgende:

Traceback (most recent call last): 
    File "classification.py", line 7, in <module> 
    from sklearn.tree import DecisionTreeClassifier, export_graphviz 
    File "C:\Python27\lib\site-packages\sklearn\__init__.py", line 56, in <module> 
    from . import __check_build 
ImportError: cannot import name __check_build 

Ich habe gelesen, dass jemand Lösung durch die Installation SciPy (scipy-0.19.1.tar.gz) finden, aber wenn ich versuche, über die Installation pip die prompte Rückkehr ich diese Meldung:

C:\Python27\Scripts>pip install scipy 
Collecting scipy 
    Using cached scipy-0.19.1.tar.gz 
Installing collected packages: scipy 
    Running setup.py install for scipy ... error 
    Complete output from command c:\python27\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\filipp~1\\appdata\\local\\temp\\pip-build-mhb0vd\\scipy\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\filipp~1\appdata\local\temp\pip-jsdbd3-record\install-record.txt --single-version-externally-managed --compile: 

    Note: if you need reliable uninstall behavior, then install 
    with pip instead of using `setup.py install`: 

     - `pip install .`  (from a git repo or downloaded source 
           release) 
     - `pip install scipy` (last SciPy release on PyPI) 


    lapack_opt_info: 
    lapack_mkl_info: 
     libraries mkl_rt not found in ['c:\\python27\\lib', 'C:\\', 'c:\\python27\\libs'] 
     NOT AVAILABLE 

    openblas_lapack_info: 
     libraries openblas not found in ['c:\\python27\\lib', 'C:\\', 'c:\\python27\\libs'] 
     NOT AVAILABLE 

    atlas_3_10_threads_info: 
    Setting PTATLAS=ATLAS 
    c:\python27\lib\site-packages\numpy\distutils\system_info.py:1051: UserWarning: Specified path C:\projects\numpy-wheels\windows-wheel-builder\atlas-builds\atlas-3.10.1-sse2-32\lib is invalid. 
     pre_dirs = system_info.get_paths(self, section, key) 
    <class 'numpy.distutils.system_info.atlas_3_10_threads_info'> 
     NOT AVAILABLE 

    atlas_3_10_info: 
    <class 'numpy.distutils.system_info.atlas_3_10_info'> 
     NOT AVAILABLE 

    atlas_threads_info: 
    Setting PTATLAS=ATLAS 
    <class 'numpy.distutils.system_info.atlas_threads_info'> 
     NOT AVAILABLE 

    atlas_info: 
    <class 'numpy.distutils.system_info.atlas_info'> 
     NOT AVAILABLE 

    c:\python27\lib\site-packages\numpy\distutils\system_info.py:572: UserWarning: 
     Atlas (http://math-atlas.sourceforge.net/) libraries not found. 
     Directories to search for the libraries can be specified in the 
     numpy/distutils/site.cfg file (section [atlas]) or by setting 
     the ATLAS environment variable. 
     self.calc_info() 
    lapack_info: 
     libraries lapack not found in ['c:\\python27\\lib', 'C:\\', 'c:\\python27\\libs'] 
     NOT AVAILABLE 

    c:\python27\lib\site-packages\numpy\distutils\system_info.py:572: UserWarning: 
     Lapack (http://www.netlib.org/lapack/) libraries not found. 
     Directories to search for the libraries can be specified in the 
     numpy/distutils/site.cfg file (section [lapack]) or by setting 
     the LAPACK environment variable. 
     self.calc_info() 
    lapack_src_info: 
     NOT AVAILABLE 

    c:\python27\lib\site-packages\numpy\distutils\system_info.py:572: UserWarning: 
     Lapack (http://www.netlib.org/lapack/) sources not found. 
     Directories to search for the sources can be specified in the 
     numpy/distutils/site.cfg file (section [lapack_src]) or by setting 
     the LAPACK_SRC environment variable. 
     self.calc_info() 
     NOT AVAILABLE 

    Running from scipy source directory. 
    non-existing path in 'scipy\\integrate': 'quadpack.h' 
    Traceback (most recent call last): 
     File "<string>", line 1, in <module> 
     File "c:\users\filipp~1\appdata\local\temp\pip-build-mhb0vd\scipy\setup.py", line 416, in <module> 
     setup_package() 
     File "c:\users\filipp~1\appdata\local\temp\pip-build-mhb0vd\scipy\setup.py", line 412, in setup_package 
     setup(**metadata) 
     File "c:\python27\lib\site-packages\numpy\distutils\core.py", line 135, in setup 
     config = configuration() 
     File "c:\users\filipp~1\appdata\local\temp\pip-build-mhb0vd\scipy\setup.py", line 336, in configuration 
     config.add_subpackage('scipy') 
     File "c:\python27\lib\site-packages\numpy\distutils\misc_util.py", line 1029, in add_subpackage 
     caller_level = 2) 
     File "c:\python27\lib\site-packages\numpy\distutils\misc_util.py", line 998, in get_subpackage 
     caller_level = caller_level + 1) 
     File "c:\python27\lib\site-packages\numpy\distutils\misc_util.py", line 935, in _get_configuration_from_setup_py 
     config = setup_module.configuration(*args) 
     File "scipy\setup.py", line 15, in configuration 
     config.add_subpackage('linalg') 
     File "c:\python27\lib\site-packages\numpy\distutils\misc_util.py", line 1029, in add_subpackage 
     caller_level = 2) 
     File "c:\python27\lib\site-packages\numpy\distutils\misc_util.py", line 998, in get_subpackage 
     caller_level = caller_level + 1) 
     File "c:\python27\lib\site-packages\numpy\distutils\misc_util.py", line 935, in _get_configuration_from_setup_py 
     config = setup_module.configuration(*args) 
     File "scipy\linalg\setup.py", line 20, in configuration 
     raise NotFoundError('no lapack/blas resources found') 
    numpy.distutils.system_info.NotFoundError: no lapack/blas resources found 

    ---------------------------------------- 
Command "c:\python27\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\filipp~1\\appdata\\local\\temp\\pip-build-mhb0vd\\scipy\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\filipp~1\appdata\local\temp\pip-jsdbd3-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in c:\users\filipp~1\appdata\local\temp\pip-build-mhb0vd\scipy\ 

Danke für die Hilfe,

Filippo.

Antwort

1

Download von here. Dann ändere den Pfad zur Datei mit cd in cmd. Danach tun Sie pip install filename.whl. Verwenden Sie natürlich den tatsächlichen Dateinamen.

+0

Danke für die Hilfe. Ich habe vorher mit den Bibliotheken versucht, die von der URL heruntergeladen werden, die Sie mir geben, aber den Pfad in der commanda pip-Installation "C: \ ........" spezifizieren. Mit dem Tipp über den Pfad mit cd ändern ich es scipy zu installieren, aber das Problem über sklearn bleibt ... –

+0

Haben Sie auch die Shell neu gestartet? – user3080315

+0

ja ich habe die Shell neu gestartet –

1

Öffnen Sie Ihr Terminal (cmd) und versuchen Sie diese, bevor Sie versuchen, den Sklearn zu importieren.

pip install -U scikit-learn 

oder

conda install scikit-learn 

Auch stellen Sie sicher, dass Sie waren numpy und scipy: nach der Installation von scipy

Starten Sie den Python-Shell:

pip install numpy 
pip install scipy 

Gruppe 1 TRY!

Versuchen Sie, diese 2:

Installieren numpy + mkl Paket von link und nach erfolgreicher Installation starten Sie den Python.

die whl Datei verwenden zu installieren: pip install some-package.whl

Wenn nichts funktioniert ......

AUSPROBIEREN 3:

Set Systempfad Variable für Python Up und der Umgebungsvariablen PYTHONPATH

Systemvariablen: in C: \ Python34 in Pfad

Benutzervariablen: add neu: (Name) PYTHONPATH (Wert) C: \ Python34 \ Lib \ Site-Pakete;

Finale, was zu versuchen:

anaconda Installieren von here

und dann laufen: conda install scikit-learn

+0

Hallo, vielen Dank für die Hilfe. Ich habe numpy und scipy installiert. 'C: \ Benutzer \ Filippo-Leoncini \ Downloads> pip installieren -U scikit-learn Anforderung bereits aktuell: scikit-lernen in c: \ python27 \ lib \ site-packages' 'C: \ Benutzer \ Filippo-Leoncini \ Downloads> pip installieren numpy Anforderung bereits erfüllt: numpy in c: \ python27 \ lib \ site-packages ' ' C: \ Benutzer \ Filippo-Leoncini \ Downloads> pip installieren sklearn Anforderung bereits erfüllt : sklearn in c: \ python27 \ lib \ site-packages Anforderung bereits erfüllt: scikit-lernen in c: \ python27 \ lib \ site-packages (von sklearn) ' –

+0

@wenn du pip in cmd tippst, erkennt es der Pip-Befehl? – sera

+0

Ja natürlich sera –