Installing the SDK

Instructions for installing the SDK are language specific.

Python

The Python SDK depends on Python >= 3.5. You may use pip to perform a system-wide install, or use virtualenv for a local install.

pip install --upgrade pip
pip install "git+https://github.com/cobaltspeech/sdk-juzu#egg=cobalt-juzu&subdirectory=grpc/py-juzu"

C#

The C# SDK utilizes the NuGet package manager. The package is called Juzu-SDK, under the owners name of CobaltSpeech.

NuGet allows 4 different ways to install. Further instructions can be found on the nuget webpage. Installing via the dotnet cli through the command:

dotnet add package Juzu-SDK

You can include the SDK in your *.csproj file as well:

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>netcoreapp3.0</TargetFramework>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Juzu-SDK" Version="0.9.3" />
  </ItemGroup>

</Project>