PiInTheSky / lora-gateway

LoRa gateway to Habitat
96 stars 69 forks source link

Unable to install dependencies and make #57

Closed PA0MHE closed 6 years ago

PA0MHE commented 6 years ago

I'm trying to install PiInTheSky on an RPi-II, but I ran in 2 problems.

Trying to install de dependencies I get: pi@Maarten-pi:~ $ sudo apt-get install git wiringpi libcurl4-openssl-dev libncurses5-dev ssdv Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package ssdv

Ignoring the earlier error I get with the make: habitat.c:17:23: fatal error: curl/curl.h: No such file or directory

include <curl/curl.h>

Thanks for all the works sofar, Maarten

daveake commented 6 years ago

For SSDV, if you're running Stretch then update it; if earlier then SSDV wasn't included so install manually:

cd git clone https://github.com/fsphil/ssdv.git cd ssdv sudo make install

Then re-run the apt install line minus the ssdv bit.

Dave

On 12 July 2018 at 17:22, MaartenHeuv notifications@github.com wrote:

I'm trying to install PiInTheSky on an RPi-II, but I ran in 2 problems.

Trying to install de dependencies I get: pi@Maarten-pi:~ $ sudo apt-get install git wiringpi libcurl4-openssl-dev libncurses5-dev ssdv Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package ssdv

Ignoring the earlier error I get with the make: habitat.c:17:23: fatal error: curl/curl.h: No such file or directory

include <curl/curl.h>

Thanks for all the works sofar, Maarten

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/PiInTheSky/lora-gateway/issues/57, or mute the thread https://github.com/notifications/unsubscribe-auth/ABBodJBV7UWvgNO1YapWiZwPamyAfMv9ks5uF3eugaJpZM4VNU-K .

PA0MHE commented 6 years ago

Solved, perfect solution,

Thanks Maarten