如何安装python-pybind11?

时间:2019-02-15 07:38:52

标签: ubuntu-16.04 apt pybind11

在我的项目文档中,我需要使用

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

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

  

正在阅读包裹清单...已完成

     

构建依赖关系树
  读取状态信息...完成

     

E:无法找到软件包python-pybind11

我不确定python-pybind11是否有效,我在哪里可以检查?

2 个答案:

答案 0 :(得分:3)

使用它来安装pybind11:

pip install pybind11

引用Here

答案 1 :(得分:0)

在Ubuntu 18.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