Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. ---------------------------------------------------------------------------
  2. ImportError Traceback (most recent call last)
  3. <ipython-input-2-8fd979e02004> in <module>()
  4. ----> 1 import sklearn
  5.  
  6. C:UsersAlpineAppDataLocalEnthoughtCanopyUsersklearn__init__.py in <module>()
  7. 29 # process, as it may not be compiled yet
  8. 30 else:
  9. ---> 31 from . import __check_build
  10. 32 from .base import clone
  11. 33
  12.  
  13. C:UsersAlpineAppDataLocalEnthoughtCanopyUsersklearn__check_build__init__.py in <module>()
  14. 44 from ._check_build import check_build
  15. 45 except ImportError as e:
  16. ---> 46 raise_build_error(e)
  17.  
  18. C:UsersAlpineAppDataLocalEnthoughtCanopyUsersklearn__check_build__init__.py in raise_build_error(e)
  19. 39 to build the package before using it: run `python setup.py install` or
  20. 40 `make` in the source directory.
  21. ---> 41 %s""" % (e, local_dir, ''.join(dir_content).strip(), msg))
  22. 42
  23. 43 try:
  24.  
  25. ImportError: No module named _check_build
  26. ___________________________________________________________________________
  27. Contents of C:UsersAlpineAppDataLocalEnthoughtCanopyUsersklearn__check_build:
  28. setup.py setup.pyc _check_build.c
  29. _check_build.pyx __init__.py __init__.pyc
  30. ___________________________________________________________________________
  31. It seems that scikit-learn has not been built correctly.
  32.  
  33. If you have installed scikit-learn from source, please do not forget
  34. to build the package before using it: run `python setup.py install` or
  35. `make` in the source directory.
  36.  
  37. If you have used an installer, please check that it is suited for your
  38. Python version, your operating system and your platform.
  39.  
  40. ERROR: An unexpected error occurred while tokenizing input
  41. The following traceback may be corrupted or invalid
  42. The error message is: ('EOF in multi-line string', (1, 2))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement