I thought this info may be useful to others as the instructions at https://bitbucket.org/nikratio/s3ql/wiki/installation_centos no longer work on recent versions of S3QL since the minimum Python required is 3.5, perhaps this or a variation could be included there..
This is just a quick recipe to get S3QL installed on a minimal install of Centos7 # disable selinux... edit /etc/selinux/config and reboot yum groupinstall -y "Development Tools" yum install systemd-devel libattr-devel sqlite-devel fuse-devel psmisc wget yum install -y https://centos7.iuscommunity.org/ius-release.rpm yum install -y python36u python36u-libs python36u-devel python36u-pip pip3.6 install --upgrade pip pip3.6 install defusedxml requests dugong llfuse pytest pycrypto apsw pip3.6 install git+https://github.com/systemd/python-systemd.git#egg=systemd wget https://bitbucket.org/nikratio/s3ql/downloads/s3ql-2.32.tar.bz2 tar xvjf s3ql-2.32.tar.bz2 cd s3ql-2.32 python3.6 setup.py build_ext --inplace; python3.6 -m pytest tests/ # apply patch https://bitbucket.org/nikratio/s3ql/issues/305 if needed? it worked OK sometimes? python3.6 setup.py install; -- 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.
