-1

I am trying to install azure IoT edge on a raspberry pi 3.0 to forward device-to-cloud messages to IoT hub. I took the help of the following link:

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

When I'm trying to build the Azure IoT edge using the command "./tools/build.sh" , the following error comes up. "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! Please help me out. Thank you in advance.

Rita Han
  • 9,574
  • 1
  • 11
  • 24

1 Answers1

0

Today i had this same issue and solved it by doing the following;

  1. ./tools/build_libuv.sh This returned an error autogen.sh 43: autogen.sh: libtoolize: not found (https://github.com/beakerbrowser/beaker/issues/54)
  2. sudo apt-get install libtool
  3. after libtool finished installing I then executed ./tools/build_libuv.sh This completed successfully
  4. ./tools/build.sh

I now have iot-edge running on my Raspberry pi 3

Josh
  • 1