Hi, This is just an adjusted recipe for S3QL on Centos 7 with the extra python modules needed since my earlier one... this could be handy to add back into the s3ql wiki?
# 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 cryptography google-auth-oauthlib pip3.6 install git+https://github.com/systemd/python-systemd.git#egg=systemd wget https: //github.com/s3ql/s3ql/releases/download/release-3.1/s3ql-3.1.tar.bz2 tar xvjf s3ql-3.1.tar.bz2 cd s3ql-3.1 python3.6 setup.py build_ext --inplace; python3.6 -m pytest tests/ 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/s3ql/9522c359-f62d-435c-8479-76368970de50%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
