0

See, I made a python program with about 7 libraries being used and I converted it into a '.exe' file. So, I wondered if I could run this same file on another device with python not installed.

Is it possible?

Please let me know. Thanks.

  • Have you tried it? – Kraay89 Dec 10 '20 at 13:13
  • That probably depends how you made it into a `.exe` file. But see [here](https://stackoverflow.com/questions/5458048/how-can-i-make-a-python-script-standalone-executable-to-run-without-any-dependen) for the answer to your implied question – lucidbrot Dec 10 '20 at 13:15
  • 2
    Vote Duplicate: [How can I make a Python script standalone executable to run without ANY dependency?](https://stackoverflow.com/questions/5458048/how-can-i-make-a-python-script-standalone-executable-to-run-without-any-dependen) – lucidbrot Dec 10 '20 at 13:15

1 Answers1

0

Depends on how you did it. Pyinstaller is a common one that allows you to do that.

k-war
  • 540
  • 3
  • 15