FerdinandoPH
FerdinandoPH

Reputation: 123

Pyinstaller can't find a module? (error loading Python DLL)

I compiled my program with pyinstaller, and it works fine on my computer, but whenever I ty to run it in another computer (with no python), I get the following error:

Error loading Python DLL  
'C:\Users\perez\AppData\Local\Temp\_MEI28162\python310.dll'.
LoadLibrary: Cannot find specified module

What can I do? I'm not allowed to install python on the other computer

Upvotes: 4

Views: 16767

Answers (3)

Neuron
Neuron

Reputation: 5851

I had the same problem and it was because I was using the output in build/main instead of dist/main (dist/main.exe in case you used --onefile)

Upvotes: 11

FerdinandoPH
FerdinandoPH

Reputation: 123

Ok, it was not working because I compiled the script with pyinstaller having python 3.10, but Windows 7's maximum python version is 3.8

Upvotes: 2

Devyl
Devyl

Reputation: 645

Copy the folder where your Python.exe is located and run this Python.exe

Upvotes: 0

Related Questions