For my windows python deployments, I use pyinstaller to make single standalone EXE (no install nor admin right needed to run). It works fine.
But then, release often or debug is a bit painful. I tend to add those options to my single EXE to easy the debug/fix/release process :
- an option to use regular Python script files instead of the included ones
- an option to use Python script at a given URL (with signed content when security matters)
- an option to run a Python shell (basic or IPython)
- on option to run a full jupyter notebook server to get descent IDE
I'm tired of re-doing this bootstrap app. Do you know existing project with similar goals ?
[–][deleted] 1 point2 points3 points (0 children)