Skip to content Skip to sidebar Skip to footer

Issue In Importing Awkward Array Package: Dll Load Failed While Importing _ext

I am trying to use awkward in my Windows 10 system. I am using python 3.8.2. After installing the package, when I import it, I am getting this DLL import error. >>> import

Solution 1:

The DLL is Awkward Array's C++ part, "awkward/_ext.pyc", which the installation should have put into place. I see two possibilities: (1) the installation went horribly wrong and should be restarted from a clean slate, or (2) the file is there but can't be loaded. If the directory it was installed to doesn't have executable permissions, that could be it. (Python code can be executed from a disk/directory without executable permissions, but native machine code can't be, which can cause some surprises.)

When it comes to installation issues, I can only make guesses because your system is different than mine. We try to use standard installation procedures, so if you use the standard Python inhalation tools (pip, conda) then it ought to work without problems, but evidently that didn't happen here.

Post a Comment for "Issue In Importing Awkward Array Package: Dll Load Failed While Importing _ext"