pybind11 で C++ から Python インタプリタを実行する
pybind11 の pybind11::scoped_interpreter を使うと、C++ から Python インタプリタを起動できます。 sample.cpp #include <pybind11/embed.h>#include <pybind11/pybind11.h> namespace py = pybind11; int main() { py::scoped_interpreter interpreter; py::print("Hello, world!"); return 0; } pybind11 を使ったプログラムをコンパイルするには、pyb