J
J
jedinikita2017-07-03 02:05:06
Python
jedinikita, 2017-07-03 02:05:06

numpy import: specified procedure not found - what to do?

Hello!
I'm using Python 3.6, Windows 7 OS
At first there were many unsuccessful attempts to install numpy using pip. After that, I reinstalled Python (deleted all previous versions). Successfully installed numpy with the command python -m pip install numpy.
But when typing import numpyin Python IDLE, the following error message occurs:

Traceback (most recent call last):
  File "C:\Users\Никита\AppData\Local\Programs\Python\Python36\lib\site-packages\numpy\core\__init__.py", line 16, in <module>
    from . import multiarray
ImportError: DLL load failed: Не найдена указанная процедура.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    import numpy
  File "C:\Users\Никита\AppData\Local\Programs\Python\Python36\lib\site-packages\numpy\__init__.py", line 142, in <module>
    from . import add_newdocs
  File "C:\Users\Никита\AppData\Local\Programs\Python\Python36\lib\site-packages\numpy\add_newdocs.py", line 13, in <module>
    from numpy.lib import add_newdoc
  File "C:\Users\Никита\AppData\Local\Programs\Python\Python36\lib\site-packages\numpy\lib\__init__.py", line 8, in <module>
    from .type_check import *
  File "C:\Users\Никита\AppData\Local\Programs\Python\Python36\lib\site-packages\numpy\lib\type_check.py", line 11, in <module>
    import numpy.core.numeric as _nx
  File "C:\Users\Никита\AppData\Local\Programs\Python\Python36\lib\site-packages\numpy\core\__init__.py", line 26, in <module>
    raise ImportError(msg)
ImportError: 
Importing the multiarray numpy extension module failed.  Most
likely you are trying to import a failed build of numpy.
If you're working with a numpy git repo, try `git clean -xdf` (removes all
files not under version control).  Otherwise reinstall numpy.

Original error was: DLL load failed: Не найдена указанная процедура.

Tell me, please, how to deal with this?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
P
PolinaRuRu, 2017-07-03
@PolinaRuRu

I also suffered with the performance of numpy & pandas.
I can advise the Anaconda project - https://www.continuum.io/downloads#windows
Many problems were solved. You don’t need to install anything separately, modules for working with data are already included in the installer. BUT it has its own python, so if you need your own, it may be necessary for all sorts of additional. passing actions.

F
fryn3, 2017-07-13
@fryn3

run with 32bit version of python

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question