-1

Is there a way to use the Speech SDK with C# on a raspberry pi (ARM or ARM64) using linux or windows IoT? Preferably an .NET Core. Thanks.

Efraim Newman
  • 927
  • 6
  • 21

1 Answers1

2

ARM64 is only supported for C++ and Java development. C# and .NET Core are only supported for x64. From the docs:

Currently, we only support Ubuntu 16.04, Ubuntu 18.04, Debian 9, Red Hat Enterprise Linux (RHEL) 8, and CentOS 8 on the following target architectures:

  • x86 (Debian/Ubuntu), x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu) for C++ development
  • x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu) for Java
  • x64 for .NET Core and Python
igg
  • 2,172
  • 3
  • 10
  • 33