プロジェクトドキュメントから、を使用してpython-pybind11
をインストールする必要があることがわかりました。
Sudo apt -y install python-pybind11
しかし、私はこのようなエラーが発生しました:
パッケージリストを読んでいます...完了
依存関係ツリーの構築
状態情報の読み取り...完了E:パッケージpython-pybind11が見つかりません
python-pybind11
が有効なパッケージかどうかわかりませんが、どこで確認できますか?
Ubuntu18.04では
apt-get install python-pybind11
Macでは、
brew install pybind11
Ubuntu 16.04では、自分でインストールする必要があります。 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