2019年4月22日月曜日

C++から、Pythonを実行する実験

C++からpythonのインタープリタを起動させたい。そのような要求には、pybind11が良いです。

#include "pch.h"
#include 
namespace py = pybind11;
using namespace py::literals;

int main()
{
 py::scoped_interpreter guard{}; // start the interpreter and keep it alive
 py::print("Hello, World!"); // use the Python API
    
}
実行環境は以下です。

0 件のコメント:

コメントを投稿