Skip to content

Commit fb8b9de

Browse files
committed
Updates from merge conflict
1 parent 50e73f7 commit fb8b9de

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-linux.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22
author: IEvangelist
33
ms.service: cognitive-services
44
ms.topic: include
5-
ms.date: 03/27/2020
5+
ms.date: 04/03/2020
66
ms.author: dapine
77
---
88

99
:::row:::
1010
:::column span="3":::
11-
The Speech SDK only supports **Ubuntu 16.04**, **Ubuntu 18.04**, **Debian 9**, **Red Hat Enterprise Linux (RHEL) 8**, and **CentOS 8** on the following target architectures:
12-
- x86 (Debian/Ubuntu), x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu) for C++ development
13-
- x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu) for Java
14-
- x64 for .NET Core and Python
11+
The Speech SDK only supports **Ubuntu 16.04/18.04**, **Debian 9**, **Red Hat Enterprise Linux (RHEL) 8**, and **CentOS 7/8** on the following target architectures when used with Linux:
12+
- x86
13+
- x64
14+
- ARM32
15+
- ARM64
1516
:::column-end:::
1617
:::column:::
1718
<br>
@@ -21,6 +22,12 @@ ms.author: dapine
2122
:::column-end:::
2223
:::row-end:::
2324

25+
> [!IMPORTANT]
26+
> When targeting Linux ARM64, and using C# - the .NET Core 3.x (dotnet-sdk-3.x package) is required. If you're targeting ARM32 or ARM64, Python is not supported.
27+
28+
> [!NOTE]
29+
> The x86 architectures of Ubuntu 16.04, Ubuntu 18.04, and Debian 9 only support C++ development with the Speech SDK.
30+
2431
### System requirements
2532

2633
For a native application, the Speech SDK relies on `libMicrosoft.CognitiveServices.Speech.core.so`. Make sure the target architecture (x86, x64) matches the application. Depending on the Linux version, additional dependencies may be required.
@@ -29,7 +36,7 @@ For a native application, the Speech SDK relies on `libMicrosoft.CognitiveServic
2936
- The OpenSSL library (`libssl.so.1.0.0` or `libssl.so.1.0.2`)
3037
- The shared library for ALSA applications (`libasound.so.2`)
3138

32-
# [Ubuntu](#tab/ubuntu)
39+
# [Ubuntu 16.04/18.04](#tab/ubuntu)
3340

3441
```Bash
3542
sudo apt-get update
@@ -43,13 +50,16 @@ sudo apt-get update
4350
sudo apt-get install build-essential libssl1.0.2 libasound2
4451
```
4552

46-
# [RHEL / CentOS 8](#tab/rhel-centos)
53+
# [RHEL 8 and CentOS 7/8](#tab/rhel-centos)
4754

4855
```Bash
4956
sudo yum update
5057
sudo yum install alsa-lib openssl
5158
```
5259

60+
> [!IMPORTANT]
61+
> Follow the instructions on [how to configure RHEL/CentOS 7 for Speech SDK](~/articles/cognitive-services/speech-service/how-to-configure-rhel-centos-7.md).
62+
5363
> [!TIP]
5464
> On RHEL/CentOS 8, follow the instructions on [how to configure OpenSSL for Linux](../how-to-configure-openssl-linux.md).
5565

0 commit comments

Comments
 (0)