Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Importing the numpy c-extensions failed. #15244

Closed
DSP209 opened this issue Jan 5, 2020 · 6 comments
Closed

Importing the numpy c-extensions failed. #15244

DSP209 opened this issue Jan 5, 2020 · 6 comments

Comments

@DSP209
Copy link

DSP209 commented Jan 5, 2020

Using Pyinstaller to create executable, Get Importing the numpy c-extensions failed.

Reproducing code example:

F:\PCS\Documents\Python>type numpytest.py
# -*- coding: utf-8 -*-

import numpy as np
x = np.array([1,2,3])
print(x)
##works fine in python...
python numpytest.py
[1 2 3]
## build with pyinstaller, no errors
pyinstaller -F numpytest.py 

Error message:

>numpytest.exe
Traceback (most recent call last):
  File "f:\python38\lib\site-packages\numpy\core\__init__.py", line 24, in <module>
    from . import multiarray
  File "f:\python38\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 627, in exec_module
    exec(bytecode, module.__dict__)
  File "f:\python38\lib\site-packages\numpy\core\multiarray.py", line 14, in <module>
    from . import overrides
  File "f:\python38\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 627, in exec_module
    exec(bytecode, module.__dict__)
  File "f:\python38\lib\site-packages\numpy\core\overrides.py", line 7, in <module>
    from numpy.core._multiarray_umath import (
ImportError: DLL load failed while importing _multiarray_umath: The specified module could not be found.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "F:\PCS\Documents\Python\numpytest.py", line 9, in <module>
    import numpy as np
  File "f:\python38\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 627, in exec_module
    exec(bytecode, module.__dict__)
  File "f:\python38\lib\site-packages\numpy\__init__.py", line 142, in <module>
    from . import core
  File "f:\python38\lib\site-packages\PyInstaller\loader\pyimod03_importers.py", line 627, in exec_module
    exec(bytecode, module.__dict__)
  File "f:\python38\lib\site-packages\numpy\core\__init__.py", line 54, in <module>
    raise ImportError(msg)
ImportError:

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the numpy c-extensions failed.
- Try uninstalling and reinstalling numpy.
- If you have already done that, then:
  1. Check that you expected to use Python3.8 from "F:\PCS\Documents\Python\dist\numpytest.exe",
     and that you have no directories in your PATH or PYTHONPATH that can
     interfere with the Python and numpy version "1.18.0" you're trying to use.
  2. If (1) looks fine, you can open a new issue at
     https://github.com/numpy/numpy/issues.  Please include details on:
     - how you installed Python
     - how you installed numpy
     - your operating system
     - whether or not you have multiple versions of Python installed
     - if you built from source, your compiler versions and ideally a build log

- If you're working with a numpy git repository, try `git clean -xdf`
  (removes all files not under version control) and rebuild numpy.

Note: this error has many possible causes, so please don't comment on
an existing issue about this - open a new one instead.

Original error was: DLL load failed while importing _multiarray_umath: The specified module could not be found.

[19036] Failed to execute script numpytest

Actions Take:

uninstalled and reinstalled numpy.

Numpy/Python version information:

Python 3.8.1
numpy 1.18.0
PyInstaller 3.5

1.18.0 3.8.1 (tags/v3.8.1:1b293b6, Dec 18 2019, 23:11:46) [MSC v.1916 64 bit (AMD64)]

Path:
F:\Python38\Scripts
F:\Python38\

@DSP209
Copy link
Author

DSP209 commented Jan 5, 2020

same as #14747
I copied the file and it works

@DSP209 DSP209 closed this as completed Jan 5, 2020
@morrismc
Copy link

morrismc commented Jan 8, 2020

I am having a very similar issue. May open a new question related to the problem.

@airqualityanthony
Copy link

Has anyone been able to correct this issue whilst using the --onefile option? I can manually copy when this isn't added and get it working, however theres nowhere to copy it to once I use --onefile.

@matalab
Copy link

matalab commented Feb 6, 2020

Is there any workaround?

@matalab
Copy link

matalab commented Feb 6, 2020

OK, I solved it! This is problem with conda (Anaconda).
numpy must be reinstalled by pip:
pip install --upgrade --force-reinstall numpy

@osahene
Copy link

osahene commented Aug 24, 2020

Simply uninstall numpy and reinstall it. The problem will be solved.

@numpy numpy locked as resolved and limited conversation to collaborators Aug 24, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants