Skip to content
This repository was archived by the owner on Feb 16, 2020. It is now read-only.

How install on Pine64 Sopine Board (ARMv7)

zzla edited this page Mar 13, 2018 · 7 revisions

How install on Pine64/Sopine Board (ARMv7)

This Guide should work on RaspberryPI as well..

Basically, everything needs to be built from source. For some reason (which I have not looked into), the default url to download ARM packages from the NPM repository just doesn't work. (access denied error, if i recall correctly).

NodeJS:

Install Directions:

  • cd /tmp
  • wget http://nodejs.org/dist/v0.10.32/node-v0.10.32.tar.gz
  • tar -xvf node-v0.10.32.tar.gz
  • cd node-v0.10.32
  • make install

SQL-Lite

Install Directions:

  • tar xvfz sqlite-autoconf-3220000.tar.gz
  • cd sqlite-autoconf-3220000
  • ./configure
  • make
  • make install

More to come...

I cannot seem to remember all of the nodes required to install gekko, however the process is the same. As you continue along your install, you'll be asked to install different nodes (talib, node-pre-gyp, etc). For each and every one of these, you should find the source files. Many of them are on Github.

  • npm install talib --unsafe-perm --build-from-source
  • npm install tulind --unsafe-perm --build-from-source
  • npm install tulip --unsafe-perm --build-from-source

Until these directions are update, here are some generic instructions:

For source files on Github"

  • git clone https://github.com/user/repo
  • cd gekko
  • sudo npm install /repo

For Source files elsewhere (wget?):

Clone this wiki locally