Guest User

Untitled

a guest
Dec 10th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. >>> import numpy
  2. Traceback (most recent call last):
  3. File "/usr/local/lib/python3.6/dist-packages/numpy/core/__init__.py", line 16, in <module>
  4. from . import multiarray
  5. ImportError: cannot import name 'multiarray'
  6.  
  7. During handling of the above exception, another exception occurred:
  8.  
  9. Traceback (most recent call last):
  10. File "<stdin>", line 1, in <module>
  11. File "/usr/local/lib/python3.6/dist-packages/numpy/__init__.py", line 142, in <module>
  12. from . import add_newdocs
  13. File "/usr/local/lib/python3.6/dist-packages/numpy/add_newdocs.py", line 13, in <module>
  14. from numpy.lib import add_newdoc
  15. File "/usr/local/lib/python3.6/dist-packages/numpy/lib/__init__.py", line 8, in <module>
  16. from .type_check import *
  17. File "/usr/local/lib/python3.6/dist-packages/numpy/lib/type_check.py", line 11, in <module>
  18. import numpy.core.numeric as _nx
  19. File "/usr/local/lib/python3.6/dist-packages/numpy/core/__init__.py", line 26, in <module>
  20. raise ImportError(msg)
  21. ImportError:
  22. Importing the multiarray numpy extension module failed. Most
  23. likely you are trying to import a failed build of numpy.
  24. If you're working with a numpy git repo, try `git clean -xdf` (removes all
  25. files not under version control). Otherwise reinstall numpy.
  26.  
  27. Original error was: cannot import name 'multiarray'
Add Comment
Please, Sign In to add comment