首页 文章

在Raspberry Pi 3中构建Azure IoT边缘时找不到cmake文件

提问于
浏览
-1

我想在 raspberry pi 3.0 上_13000036_将设备到 Cloud 的消息转发到 IoT hub . 我接受了以下链接的帮助:

https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-iot-edge-physical-device

当我尝试使用命令"./tools/build.sh"构建Azure IoT边缘时,会出现以下错误 . “ Cmake error at /usr/share/cmake-3.6/Modules/FindPkgConfig.cmake:646(message): None of the required 'gio-unix-2.0' found.

Configuring incomplete, errors occured! 请帮帮我 . 先感谢您 .

1 回答

  • 0

    今天我遇到了同样的问题并通过以下方式解决了这个问题 .

    • ./tools/build_libuv.sh返回错误autogen.sh 43:autogen.sh:libtoolize:not found(https://github.com/beakerbrowser/beaker/issues/54

    • sudo apt-get install libtool
      libtool完成安装后

    • 然后执行./tools/build_libuv.sh这个成功完成

    • ./tools/build.sh

    我现在在我的Raspberry pi 3上运行了iot-edge

相关问题