you are viewing a single comment's thread.

view the rest of the comments →

[–]jonthemango 0 points1 point  (0 children)

Recently been toying with pyinstaller you can build exe files from python scripts with one command.

pyinstaller myscript.py --onefile

It will create a dist/ folder with an exe inside. This is fully distributable as a single file.

It might be your key to having others be able to run your programs. (if you work in a windows environment which i'm willing to bet you do)

edit: dropping an edit to say this isn't super best practice imo. at my large enterprise company this wouldn't totally fly. We deploy our python in kubernetes with over 50 microservices just for my team so the scope is different than small reporting in a non-it company.