so i am creating Python software that uses C++ for heavy lifting when needed through pybind11, this however made me think.
If I gave this Python app to someone who doesn't have the C++ runtime installed, would it work on his machine or give an error when the C++ code is ran? I mean those are compiled C++ modules as .dll that run through Python so technically its just binary code that Python runs right?