Duplicate, amazon s3 backend exception

I am trying to create an automatic backup using duplicity in amazon s3, following this guide: simple backup of server to amazon s3 with duplicity

However, for this command:

duplicity /var/www s3+http://com.mycorp.myhost.backup 

I meet an error:

 BackendException: Could not initialize backend: No module named boot 

Googling does not give clear results for me. FYI, the actual command that I run:

 duplicity /Users/okyretina/Dropbox/archive/ s3+http://com.sinkdrive.okyretina.dropbox.archieve 

I understand that this guide is for linux and I am using mac osx lion, but I decided that it should work. Any help is appreciated. Thanks.

+6
source share
2 answers

Turns out I need to install boto first from here

+2
source

If you are on debian / ubuntu, you can install it via: sudo apt-get install python-boto

+14
source

Source: https://habr.com/ru/post/920807/


All Articles