如何安装 python-pybind11?

How to apt install python-pybind11?

我从我的项目文档中看到我需要使用

安装 python-pybind11
sudo apt -y install python-pybind11

但是我得到了这样的错误:

Reading package lists... Done

Building dependency tree
Reading state information... Done

E: Unable to locate package python-pybind11

我不确定python-pybind11是否是一个有效的包裹,我在哪里可以检查它?

使用这个安装 pybind11:

pip install pybind11

参考自Here.

在Ubuntu18.04

apt-get install python-pybind11

在 Mac,

brew install pybind11

在 Ubuntu 16.04 中,您需要自行安装。一种方式如下:

# Some prerequisites (but not all of them)
apt-get install cmake
pip3 install pytest

# Clone, build and install 
git clone https://github.com/pybind/pybind11.git 
cd pybind11 
mkdir build 
cd build 
cmake .. 
make install

Reference