-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: .NET, SPX and OpenSSL v1 needed
- Loading branch information
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# Build and install OpenSSL 1.1.1u | ||
wget -O - https://www.openssl.org/source/openssl-1.1.1u.tar.gz | tar zxf - | ||
cd openssl-1.1.1u | ||
./config --prefix=/usr/local | ||
make -j $(nproc) | ||
sudo make install_sw install_ssldirs | ||
sudo ldconfig | ||
cd .. && sudo rm -R openssl-1.1.1u | ||
|
||
# Install .NET 6.0 SDK and the Speech CLI tool | ||
# sudo apt-get update && sudo apt-get install -y dotnet-sdk-6.0 | ||
# dotnet tool install --global Microsoft.CognitiveServices.Speech.CLI | ||
sudo apt-get update && sudo apt-get install -y dotnet-sdk-6.0 | ||
dotnet tool install --global Microsoft.CognitiveServices.Speech.CLI | ||
|
||
# Install the Azure Speech SDK for Python | ||
python -m pip install azure-cognitiveservices-speech |