Skip to content

Commit f80d600

Browse files
Merge pull request #232305 from eric-urban/eur/sdk-go
ca-certificates for GO SDK
2 parents 256c6da + b555abd commit f80d600

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/cognitive-services/Speech-Service/includes/quickstarts/platform/linux-distributions.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@ ms.author: eur
1212
The Speech SDK depends on the following Linux system libraries:
1313

1414
- The shared libraries of the GNU C library, including the POSIX Threads Programming library, `libpthreads`
15-
- The OpenSSL library (`libssl`) version 1.x
15+
- The OpenSSL library (`libssl`) version 1.x and certificates (`ca-certificates`)
1616
- The shared library for ALSA applications (`libasound`)
17+
- You should also install `ca-certificates` to establish a secure websocket and avoid the `WS_OPEN_ERROR_UNDERLYING_IO_OPEN_FAILED` error.
1718

1819
# [Ubuntu 18.04/20.04/22.04](#tab/ubuntu)
1920

2021
```Bash
2122
sudo apt-get update
22-
sudo apt-get install build-essential libssl-dev libasound2 wget
23+
sudo apt-get install build-essential libssl-dev ca-certificates libasound2 wget
2324
```
2425

2526
> [!IMPORTANT]
@@ -33,7 +34,7 @@ To use the Speech SDK in Alpine Linux, create a Debian chroot environment as doc
3334

3435
```Bash
3536
sudo apt-get update
36-
sudo apt-get install build-essential libssl-dev libasound2 wget
37+
sudo apt-get install build-essential libssl-dev ca-certificates libasound2 wget
3738
```
3839

3940
# [RHEL 7/8 and CentOS 7/8](#tab/rhel-centos)

0 commit comments

Comments
 (0)