0

Could someone please give me a step-by-step recipe of sorts for how one makes an exe from a python script in Windows 10? Nowhere can I find detailed instructions.

Also, I need to incorporate a number of .wav files into the final .exe file. How exactly do I do this?

Many thanks.

niamulbengali
  • 292
  • 1
  • 3
  • 16
Owen Walker
  • 75
  • 1
  • 2
  • 9

1 Answers1

0

You can use PyInstaller.it have a option for pack everything to a one file exe.

  • If I put in the windows command line; pyinstaller [path]myscript.py, I consistently get "failed to create process." Pyinstaller is in the basic C drive and it doesn't matter where I put myscript.py. What am I doing wrong? – Owen Walker Sep 16 '16 at 01:14