I'm trying to set up backups to Backblaze B2 using Duplicity.
running: Duplicity ~ b2://[keyID]:[ApplicationKey]@B2BucketName
returns: BackendException: B2 backend requires B2 Python APIs (pip install b2)
so I ran "pip install b2" and tried again, got the same error message. When I go to python to check import b2 and import b2.api, I get:
"Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named b2.api"
on python3 neither import b2 nor import b2.api return any errors.
This is probably exceedingly stupid but I'm really not sure what I should try next to get rid of that BackendException error.