01-05-2018, 11:44 AM
(01-04-2018, 07:46 PM)phoenix-blue Wrote: Hello,
I'm trying to install Gekko on an clean raspberry pi jessi, but get some errors.
The Rapi is up-to-date and i have install extr nodejs but when in use the command:
Is there something i have forgot to install?
I had also lots of trouble with the raspberry pi (i played around with both zero-w and rpi3) on raspian stretch lite. Especially SQLite was a huge struggle. eventually i used this to get it working (i think) by this
Code:
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install -y git
sudo git clone git://github.com/askmike/gekko.git
cd gekko
sudo npm install --only=production
sudo npm install -g node-pre-gyp
sudo npm install sqlite --unsafe-perm
Hope it helps you , i'm just a linux noob so don't shoot me
Jan