Search code examples
ubuntu-16.04aptpybind11

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 I got error like this:

Reading package lists... Done

Building dependency tree
Reading state information... Done

E: Unable to locate package python-pybind11

I'm not sure if python-pybind11 is a valid package, where can I check it?


Solution

  • Use this to install pybind11:

    pip install pybind11
    

    Refer from Here.