1

I Converted my python programme to an exe using pyinstaller.

It works fine on the computer i converted it on, But all other computers give the following error:

Error loading python DLL: c:\Users\win8\Downloads\Up2048\Up2048mew\python27.dll <error code 14001>

i compiled the exe with no modifying commands:\

I have attempted to add the latest version of VC++ but it does not work

  • Possible duplicate of [PyInstaller not working on simple HelloWorld Program](http://stackoverflow.com/questions/19225132/pyinstaller-not-working-on-simple-helloworld-program) – David Zemens May 17 '17 at 18:34

1 Answers1

0

I had the same problem and I solved upgrading the pip.

Run the command pip install --upgrade pyinstaller and be happy. :)

user3237970
  • 141
  • 1
  • 3