D435のbagファイルを再生する(pyrealsense2使用)

qiita.com


pip install pyrealsenseするとビルドエラーが出た
ソースからインストールしてみる
github.com

git clone https://github.com/IntelRealSense/librealsense
mkdir build & cd build
cmake ../ -DBUILD_PYTHON_BINDINGS=bool:true
make -j4

エラーが出た

CMake Error at /usr/local/lib/cmake/glfw3/glfw3Targets.cmake:75 (message):
  The imported target "glfw" references the file

     "/usr/local/lib/libglfw3.a"

  but this file does not exist.  Possible reasons include:

  * The file was deleted, renamed, or moved to another location.

  * An install or uninstall procedure did not complete successfully.

  * The installation package was faulty and contained

     "/usr/local/lib/cmake/glfw3/glfw3Targets.cmake"

  but not all the files it references.

Call Stack (most recent call first):
  /usr/local/lib/cmake/glfw3/glfw3Config.cmake:1 (include)
  CMakeLists.txt:77 (find_package)