Skip to content

Instantly share code, notes, and snippets.

@fredrike
Created August 11, 2015 10:15
Show Gist options
  • Save fredrike/c0d98a949b30187a2088 to your computer and use it in GitHub Desktop.
Save fredrike/c0d98a949b30187a2088 to your computer and use it in GitHub Desktop.

Install raspbian wheezy packages:

sudo apt-get install git python3-pip redis-server rabbitmq-server libxml2-dev python3-lxml python3-crypto yum

Install mongodb (not includes in default repo) from https://github.com/tjanson/mongodb-armhf-deb:

wget https://github.com/tjanson/mongodb-armhf-deb/releases/download/v2.1.1-1/mongodb_2.1.1_armhf.deb
sudo apt-get install libboost1.49-dev libicu48 libboost-dev
sudo dpkg -i mongodb_2.1.1_armhf.deb
sudo /etc/init.d/mongodb start

Install libxslt-devel and libxml2-devel:

yum install libxslt-devel libxml2-devel

Returning to normal Ubuntu installation:

git clone https://github.com/cpfair/tapiriik.git
cd tapiriik
pip-3.2 install -r requirements.txt
cp tapiriik/local_settings.py.example tapiriik/local_settings.py
python3 credentialstore_keygen.py >> tapiriik/local_settings.py
python3 manage.py runserver 0.0.0.0:8000
@GewoonGijs
Copy link

GewoonGijs commented Dec 6, 2017

I tried this, but the process got stuck on installation of libxslt-devel en libxml2-devel,

Can anybody help?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment