Top "Pybind11" questions

pybind11 is a C++/Python package offering seamless operability between C++11 and Python, in the spirit of “boost::python” but without the heavy-duty Boost dependency.

returning numpy arrays via pybind11

I have a C++ function computing a large tensor which I would like to return to Python as a NumPy …

python c++ arrays numpy pybind11
How to apt install python-pybind11?

I see form my project document that I need to install python-pybind11 by using sudo apt -y install python-pybind11 but …

ubuntu-16.04 apt pybind11
pybind11 "Python is 64-bit, chosen compiler is 32-bit"

I'm trying to compile pybind11 on a Windows machine that has VisualStudio 2015 installed. I also have python 3.5.3 64bit installed, and …

visual-studio-2015 cmake pybind11
call a Python function from c++ using pybind11

I am trying to call a python function from a C++ code which contains main() function using Pybind11. But I …

c++ pybind11