Skip to content
abendory edited this page Sep 29, 2015 · 3 revisions

Installing dependencies

System/OS

On raspberrypi, and ubuntu or apt based linux distros:

sudo apt-get -y install python python-setuptools git curl

Needed libraries/tools

Then you can quickly install decocare, dexcom_reader, and openaps doing something like this:

curl -s https://gist.githubusercontent.com/bewest/84f134f7b6d5375e2f04/raw/b2275153d1731a8f43df8c2fe2563612382ed8d4/install.sh | bash

Which should run the following:

git clone -b bewest/dev git@github.com:bewest/decoding-carelink.git
git clone git@github.com:bewest/dexcom_reader.git
git clone git@github.com:openaps/openaps.git

(cd decoding-carelink
sudo python setup.py develop
)

(cd dexcom_reader
sudo python setup.py develop
)

(cd openaps
sudo python setup.py develop
)

Clone this wiki locally