I've read this question:
How can I make a Python script standalone executable to run without ANY dependency?
and some (or all?) of the options there work. But - I don't care about removing all dependencies. I'm just fine with an executable which depends on glibc, libssl, libbz2 etc. - I just want it not to depend on anything Pythonic (mostly libpython3.something.so, and maybe Python-adjacent libs).
How can I achieve that? Specifically, can I use tools like pyinstaller, cypthon, nuitka etc. to achieve that?