How to apt install python-pybind11?

Felix Xu picture Felix Xu · Feb 15, 2019 · Viewed 12k times · Source

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?

Answer

PrakashG picture PrakashG · Feb 15, 2019

Use this to install pybind11:

pip install pybind11

Refer from Here.