On Oct 12 2015, David Gasaway <[email protected]> wrote: >> $ wget http://s3ql.googlecode.com/files/s3ql-2.13.tar.bz2 >> || wget https://bitbucket.org/nikratio/s3ql/downloads/s3ql-2.13.tar.bz2 >> $ tar xjf s3ql-2.13.tar.bz2 >> $ (cd s3ql-2.13; ./setup.py build_ext) >> $ s3ql-2.13/bin/s3qladm <options> > > When I tried this procedure, the s3qladm command gave the following error. > >>>>>>> > Traceback (most recent call last): > File "s3ql-2.13/bin/s3qladm", line 25, in <module> > import s3ql.adm > File "/root/temp/s3ql-2.13/src/s3ql/adm.py", line 17, in <module> > from .metadata import restore_metadata, cycle_metadata, dump_metadata > File "/root/temp/s3ql-2.13/src/s3ql/metadata.py", line 11, in <module> > from .deltadump import INTEGER, BLOB, TIME, dump_table, load_table > ImportError: No module named 's3ql.deltadump' >>>>>>> > > Instead, I needed to use './setup.py build_cython build_ext --inplace' > as indicated by Nikolaus in this ticket: > > https://bitbucket.org/nikratio/s3ql/issues/118/no-module-named-s3qldeltadump-running
You don't need the build_cython step (which would require you to install Cython as well). You just forgot to add the --inplace switch. See also http://www.rath.org/s3ql-docs/installation.html#installing-s3ql. Best, -Nikolaus -- GPG encrypted emails preferred. Key id: 0xD113FCAC3C4E599F Fingerprint: ED31 791B 2C5C 1613 AF38 8B8A D113 FCAC 3C4E 599F »Time flies like an arrow, fruit flies like a Banana.« -- 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.
