I have a C++ application that I'm compiling with Visual Studio 2010 that needs to be able to call a couple python scripts and read their output, but I can't count on Python being installed on the computer. PythonQt seems to be the favored simple option, but every post I've seen is dated 2009 or older. The main tutorial even still says TrollTech on it.
This makes me think that this methodology/class is dated or perhaps deprecated. Is boost::Python the way to go now, or does PythonQt still do the trick, or should I just embed Python the normal C++ way like everyone else?