📜  安装 pybind ubuntu - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:46.506000             🧑  作者: Mango

代码示例1
# 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