Setup

This page will guide you through the process of setting up the Deeptone SDK in your project.

Note: Python version 3.7 is required.

Using pipenv

Create a Pipenv project if you don’t have one already, by running:

$ pipenv --python 3.7
$ pipenv lock

Then, and add the following to your Pipfile, to configure Pipenv to fetch packages from OTO’s PyPI repository:

[[source]]
name = "deeptone"
url = "https://sdk.oto.ai/pypi/"
verify_ssl = true

After the repository is configured, run the following to add the dependency to your project:

$ pipenv install deeptone

Using pip

To install the Deeptone SDK via pip, run the following:

$ pip install deeptone --extra-index-url https://sdk.oto.ai/pypi/

This will fetch and install the Deeptone package from OTO’s PyPI repository.