|
|
|
|
|
by lima
3395 days ago
|
|
You can deploy Python code as a static binary that includes the interpreter along with all dependencies. I heavily use this in production and life is great - deployment means copying one single binary, reverting means running an older one instead. No external dependencies, no pip upgrades, just libc. https://github.com/pyinstaller/pyinstaller |
|