Is there a way to deploy a Python program that includes all dependencies on a Linux system?
I have used py2exe to "compile" a python script with all modules to a standalone .exe, but that's obviously only working on Windows. Is there an easy way to e.g. develop a flask server with Python and have all its scripts and modules bundled together so that it can be executed on Linux without having to install the dependencies with pip? (assuming python3 is installed on the Linux platform, but no specific Python modules).