Skip to content

Commit 497cc1e

Browse files
committed
ca-certificates for GO SDK
1 parent c7700d8 commit 497cc1e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ The Speech SDK depends on the following Linux system libraries:
1414
- The shared libraries of the GNU C library, including the POSIX Threads Programming library, `libpthreads`
1515
- The OpenSSL library (`libssl`) version 1.x
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)