Bohdan Lakatosh
Results
1
comments of
Bohdan Lakatosh
I had similar problem. We typically use python in our C++ code base in the following way: ``` py::scoped_interpreter guard{}; py::dict locals; py::exec(R"(python code here)", py::globals(), locals); ``` In order...