NVSL / PiDuino_Library

15 stars 4 forks source link

sudo apt-get install libpiduino-dev fails. Unable to find library #1

Open thebreadboard opened 7 years ago

thebreadboard commented 7 years ago

This looks promising but without being able to install ??

jgarzagu commented 7 years ago

Hi,

Thank you for letting me know the issue. I just tested ($ sudo apt-cache search libpiduino) in both a Raspberry Pi Zero and a Raspberry Pi 2. The library was found in the Pi Zero but not in the Pi 2. I just notice that Debian repositories treat the ARMv6 (Pi Zero) architecture and ARMv7 (Pi 2 and Pi 3) architecture differently. And I uploaded only a debian package for the ARMv6 (Pi Zero) but not for the ARMv7 (Pi 2 and Pi 3) repositories.

I will upload the libpiduino library for ARMv7 but it will take at least a week until the debian guys review and accept the libpiduino debian package for ARMv7.

In the meantime you can install the library directly executing the following commands.

$ wget https://github.com/NVSL/PiDuino_Library/releases/download/1.0.0/libpiduino1_1.0-1_armhf.deb 
$ wget https://github.com/NVSL/PiDuino_Library/releases/download/1.0.0/libpiduino-dev_1.0-1_armhf.deb 
$ sudo dpkg -i libpiduino1_1.0-1_armhf.deb 
$ sudo dpkg -i libpiduino-dev_1.0-1_armhf.deb 

The Piduino Library web page install section has also been updated with the above steps.

Thank you!!