Activate a Python environment, if you haven't already:
$ python3 -m venv env
$ source env/bin/activateThen build + install the project:
$ python3 -m pip install .Once the module was installed locally, imports from arete_sdk will work:
from arete_sdk import Client
...See the examples for further usage details.