I've been playing with s3ql on a R Pi model 2 v 1.1. I'm using the latest raspbian lite version. They actually have an old version of s3ql in their package repository. I wanted to use a newer version so I walked through the install and it worked for me. I had to install the following packages with apt-get:
apt-get -qfy install autoconf fuse javascript-common libattr1-dev libfuse-dev libjs-sphinxdoc libjs-underscore libsqlite3-dev python3-apsw python3-crypto python3-defusedxml python3-dev python3-dugong python3-llfuse python3-pip python3-requests python3-setuptools python3-systemd After that, I had to upgrade dugong and llfuse with pip: pip3 install dugong --upgrade pip3 install llfuse --upgrade Then I downloaded a copy of s3ql-2.17.1.tar.bz2 into /usr/local/src and did the following: cd /usr/local/src <https://bitbucket.org/nikratio/s3ql/downloads/s3ql-2.15.tar.bz2> tar -xjpf s3ql-2.17.1.tar.bz2 cd s3ql-2.17.1/ python3.4 setup.py build_ext --inplace python3.4 runtests.py tests python3.4 setup.py install The build worked, the tests ran and I was able to install. I still am testing but it seems to work. -- You received this message because you are subscribed to the Google Groups "s3ql" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
