[issue46276] ImportError: DLL load failed while importing

2022-01-06 Thread Eryk Sun
Eryk Sun added the comment: > ImportError: DLL load failed while importing _socket: El parĂ¡metro no es > correcto. I'm not familiar with the implementation of PyInstaller, which is a third-party tool. The above invalid-parameter error may be indirectly related to the problem with frida, or

[issue46276] ImportError: DLL load failed while importing

2022-01-06 Thread Zombo
Zombo added the comment: Looks like the issue is not specific to that one package: Traceback (most recent call last): File "Lib\site-packages\PyInstaller\hooks\rthooks\pyi_rth_multiprocessing.py", line 17, in File "PyInstaller\loader\pyimod03_importers.py", line 546, in exec_module File

[issue46276] ImportError: DLL load failed while importing

2022-01-06 Thread Eryk Sun
Eryk Sun added the comment: "_frida.cp310-win_amd64.pyd" is a bad build or corrupted file. It imports a procedure with no name from a DLL with no name, which causes the loader to search for a file named ".DLL". Even if that were found, it imports another procedure with no name or correct

[issue46276] ImportError: DLL load failed while importing

2022-01-06 Thread Eric V. Smith
Eric V. Smith added the comment: I see this has been reported in frida's tracker. It looks like a problem with that package. -- nosy: +eric.smith type: crash -> behavior ___ Python tracker

[issue46276] ImportError: DLL load failed while importing

2022-01-05 Thread Zombo
New submission from Zombo : This code fails: >>> import _frida Traceback (most recent call last): File "", line 1, in ImportError: DLL load failed while importing _frida: The specified module could not be found. works as expected with Python 3.9