Cannot install on Raspberry pi2 - Printable Version +- Gekko Forum (https://forum.gekko.wizb.it) +-- Forum: Gekko (https://forum.gekko.wizb.it/forum-13.html) +--- Forum: Technical Support (https://forum.gekko.wizb.it/forum-19.html) +--- Thread: Cannot install on Raspberry pi2 (/thread-54429.html) |
Cannot install on Raspberry pi2 - Phil2 - 03-09-2018 Hello All I tried to install gekko on a Raspberry pi 2 but it doesn't work. I tried to install on a clean RaspBian I had the same problem as described here : https://forum.gekko.wizb.it/thread-10.html pi@raspberrypi:~ $ sudo npm i -g sqlite3 --unsafe-perm > sqlite3@3.1.13 install /usr/lib/node_modules/sqlite3 > node-pre-gyp install --fallback-to-build node-pre-gyp ERR! Tried to download(403): https://mapbox-node-binary.s3.amazonaws....arm.tar.gz node-pre-gyp ERR! Pre-built binaries not found for sqlite3@3.1.13 and node@8.9.4 (node-v57 ABI) (falling back to source compile with node-gyp) make: Entering directory '/usr/lib/node_modules/sqlite3/build' ACTION deps_sqlite3_gyp_action_before_build_target_unpack_sqlite_dep Release/obj/gen/sqlite-autoconf-3150000/sqlite3.c TOUCH Release/obj.target/deps/action_before_build.stamp CC(target) Release/obj.target/sqlite3/gen/sqlite-autoconf-3150000/sqlite3.o Is a step by step tuto exist to install GEKKO on a Raspberry pi 2 ? Thanks for all your helps RE: Cannot install on Raspberry pi2 - PewQ - 03-09-2018 Same problem on Raspberry Pi 3+B with Raspbian Stretch On windows 10 no problem! Please help! RE: Cannot install on Raspberry pi2 - gigirk - 03-10-2018 Hello, it works for me on raspberry pi and other platforms with rock64 if I had a little trouble installing it but in the end I managed it and it works. I will leave you some commands that helped me some, but the important thing is that it works without falling. Code: sudo apt install sqlite (in case the above does not work) It is also important to have version 8 of node installed because with 9 the one that installed ocn command Code: sudo apt install nodejs can be eliminated Code: which node //where the node is installed install node for raspberry pi (first) depends your cpu this command is only for the raspberry pi first version to find the correct version you should know that cpu uses your plate and choose the appropriate version on this website https://nodejs.org/en/download/ Code: cat /proc/cpuinfo //with this command you discover that cpu has your board pi@raspberrypi:~ $ cat /proc/cpuinfo processor : 0 model name : ARMv6-compatible processor rev 7 (v6l) BogoMIPS : 697.95 Features : half thumb fastmult vfp edsp java tls CPU implementer : 0x41 CPU architecture: 7 CPU variant : 0x0 CPU part : 0xb76 CPU revision : 7 Hardware : BCM2835 Revision : 000e Serial : 0000000048cdee91 you bought what processor you have in my case it's arm6 //you go to the web https://nodejs.org/en/download/ //and you choose which node version is for you replace the file name in all the following queries Code: //raspeberry pi //in some cases I have needed and this later but it should no longer be necessary sudo apt-get install -y build-essential and then continue with the commands that you leave at the beginning couple lover operated the gekko you will need after closing ssh Code: npm install pm2 -g I am quite a beginner in this I only learned linux when I wanted to install gekko in raspberry and all kinds of problems have come out so I made some notes that happen to you I am not a professional but I hope to have helped people who come well RE: Cannot install on Raspberry pi2 - gward - 03-12-2018 I had the same issues. I followed the tutorial here: https://forum.gekko.wizb.it/thread-1497.html from start to finish and finally got it working. |