diff --git a/Instructions/Labs/01-analyze-text.md b/Instructions/Labs/01-analyze-text.md index 040c36b2..dff3703a 100644 --- a/Instructions/Labs/01-analyze-text.md +++ b/Instructions/Labs/01-analyze-text.md @@ -77,8 +77,8 @@ You'll develop your code using Cloud Shell from the Azure Portal. The code files 1. Create a Python virtual environment and install the Azure AI Language Text Analytics SDK package and other required packages by running the following command: ``` - python -m venv labenv - ./labenv/bin/Activate.ps1 + python -m venv labenv; + ./labenv/bin/Activate.ps1; pip install -r requirements.txt azure-ai-textanalytics==5.3.0 ``` diff --git a/Instructions/Labs/02-qna.md b/Instructions/Labs/02-qna.md index d328b4ed..741afc09 100644 --- a/Instructions/Labs/02-qna.md +++ b/Instructions/Labs/02-qna.md @@ -177,9 +177,9 @@ You'll develop your question answering app using Cloud Shell in the Azure portal 1. Create a Python virtual environment and install the Azure AI Language Question Answering SDK package and other required packages by running the following command: ``` - python -m venv labenv - ./labenv/bin/Activate.ps1 - pip install -r requirements.txt azure-ai-language-questionanswering + python -m venv labenv; + ./labenv/bin/Activate.ps1; + pip install -r requirements.txt azure-ai-language-questionanswering ``` 1. Enter the following command to edit the configuration file: diff --git a/Instructions/Labs/03-language-understanding.md b/Instructions/Labs/03-language-understanding.md index bf2fcad8..bd96860f 100644 --- a/Instructions/Labs/03-language-understanding.md +++ b/Instructions/Labs/03-language-understanding.md @@ -360,9 +360,9 @@ You'll develop your language understanding app using Cloud Shell in the Azure po 1. Create a Python virtual environment and install the Azure AI Language Conversations SDK package and other required packages by running the following command: ``` - python -m venv labenv - ./labenv/bin/Activate.ps1 - pip install -r requirements.txt azure-ai-language-conversations==1.1.0 + python -m venv labenv; + ./labenv/bin/Activate.ps1; + pip install -r requirements.txt azure-ai-language-conversations==1.1.0 ``` 1. Enter the following command to edit the configuration file: diff --git a/Instructions/Labs/04-text-classification.md b/Instructions/Labs/04-text-classification.md index 40fac2f0..aa462545 100644 --- a/Instructions/Labs/04-text-classification.md +++ b/Instructions/Labs/04-text-classification.md @@ -223,9 +223,9 @@ To test the custom text classification capabilities of the Azure AI Language ser 1. Create a Python virtual environment and install the Azure AI Language Text Analytics SDK package and other required packages by running the following command: ``` - python -m venv labenv - ./labenv/bin/Activate.ps1 - pip install -r requirements.txt azure-ai-textanalytics==5.3.0 + python -m venv labenv; + ./labenv/bin/Activate.ps1; + pip install -r requirements.txt azure-ai-textanalytics==5.3.0 ``` 1. Enter the following command to edit the application configuration file: diff --git a/Instructions/Labs/05-extract-custom-entities.md b/Instructions/Labs/05-extract-custom-entities.md index 8357d573..72a40bd0 100644 --- a/Instructions/Labs/05-extract-custom-entities.md +++ b/Instructions/Labs/05-extract-custom-entities.md @@ -200,9 +200,9 @@ To test the custom entity extraction capabilities of the Azure AI Language servi 1. Create a Python virtual environment and install the Azure AI Language Text Analytics SDK package and other required packages by running the following command: ``` - python -m venv labenv - ./labenv/bin/Activate.ps1 - pip install -r requirements.txt azure-ai-textanalytics==5.3.0 + python -m venv labenv; + ./labenv/bin/Activate.ps1; + pip install -r requirements.txt azure-ai-textanalytics==5.3.0 ``` 1. Enter the following command to edit the application configuration file: diff --git a/Instructions/Labs/06-translate-text.md b/Instructions/Labs/06-translate-text.md index b1fc8346..646946aa 100644 --- a/Instructions/Labs/06-translate-text.md +++ b/Instructions/Labs/06-translate-text.md @@ -72,8 +72,8 @@ To test the text translation capabilities of Azure AI Translator, you'll develop 1. Create a Python virtual environment and install the Azure AI Translation SDK package and other required packages by running the following command: ``` - python -m venv labenv - ./labenv/bin/Activate.ps1 + python -m venv labenv; + ./labenv/bin/Activate.ps1; pip install -r requirements.txt azure-ai-translation-text==1.0.1 ``` diff --git a/Instructions/Labs/07-speech.md b/Instructions/Labs/07-speech.md index c3747de2..0ceb39fd 100644 --- a/Instructions/Labs/07-speech.md +++ b/Instructions/Labs/07-speech.md @@ -76,8 +76,8 @@ Let's start by creating an Azure AI Speech resource. 1. Create a Python virtual environment and install the Azure AI Speech SDK package and other required packages by running the following command: ``` - python -m venv labenv - ./labenv/bin/Activate.ps1 + python -m venv labenv; + ./labenv/bin/Activate.ps1; pip install -r requirements.txt azure-cognitiveservices-speech==1.42.0 ``` diff --git a/Instructions/Labs/08-translate-speech.md b/Instructions/Labs/08-translate-speech.md index 3f1e0653..fd0ca05a 100644 --- a/Instructions/Labs/08-translate-speech.md +++ b/Instructions/Labs/08-translate-speech.md @@ -71,8 +71,8 @@ Let's start by creating an Azure AI Speech resource. 1. Create a Python virtual environment and install the Azure AI Speech SDK package and other required packages by running the following command: ``` - python -m venv labenv - ./labenv/bin/Activate.ps1 + python -m venv labenv; + ./labenv/bin/Activate.ps1; pip install -r requirements.txt azure-cognitiveservices-speech==1.42.0 ``` diff --git a/Instructions/Labs/09-audio-chat.md b/Instructions/Labs/09-audio-chat.md index 371be045..13259119 100644 --- a/Instructions/Labs/09-audio-chat.md +++ b/Instructions/Labs/09-audio-chat.md @@ -94,8 +94,8 @@ Now that you deployed a model, you can use the Azure AI Foundry and Azure AI Mod 1. In the cloud shell command line pane, enter the following command to install the libraries you'll use: ``` - python -m venv labenv - ./labenv/bin/Activate.ps1 + python -m venv labenv; + ./labenv/bin/Activate.ps1; pip install -r requirements.txt azure-identity azure-ai-projects openai ```