From cad62353af052751d2c4409894954f8176523283 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 13:01:19 +0100 Subject: [PATCH 01/13] Simplify virtual environment setup command prevents issues with the "typing" feature in some lab envs --- Instructions/Labs/02-qna.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Instructions/Labs/02-qna.md b/Instructions/Labs/02-qna.md index d328b4ed..6bdf84c3 100644 --- a/Instructions/Labs/02-qna.md +++ b/Instructions/Labs/02-qna.md @@ -177,9 +177,7 @@ 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: From 0735e6cc0b9f41b6c0cfaa9ca2578492d4a9687c Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 13:02:00 +0100 Subject: [PATCH 02/13] Simplify virtual environment setup command prevents issues with the "typing" feature in some lab envs --- Instructions/Labs/03-language-understanding.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Instructions/Labs/03-language-understanding.md b/Instructions/Labs/03-language-understanding.md index bf2fcad8..9318a513 100644 --- a/Instructions/Labs/03-language-understanding.md +++ b/Instructions/Labs/03-language-understanding.md @@ -360,9 +360,7 @@ 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: From 412a646a1c1a6ea5ac20a6c02cc1bd52de81b464 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 13:03:59 +0100 Subject: [PATCH 03/13] Simplify virtual environment setup command Condensed commands for creating a virtual environment and installing packages into a single line. --- Instructions/Labs/04-text-classification.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Instructions/Labs/04-text-classification.md b/Instructions/Labs/04-text-classification.md index 40fac2f0..fa9af4d4 100644 --- a/Instructions/Labs/04-text-classification.md +++ b/Instructions/Labs/04-text-classification.md @@ -223,9 +223,7 @@ 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: From 8d65af241373cac459e117387532c590ac54e3ca Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 13:04:41 +0100 Subject: [PATCH 04/13] Simplify environment setup command in instructions --- Instructions/Labs/05-extract-custom-entities.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Instructions/Labs/05-extract-custom-entities.md b/Instructions/Labs/05-extract-custom-entities.md index 8357d573..11e949e1 100644 --- a/Instructions/Labs/05-extract-custom-entities.md +++ b/Instructions/Labs/05-extract-custom-entities.md @@ -200,9 +200,7 @@ 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: From 7d702beba664bc340a62238886c4ebc339b30c05 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 13:05:55 +0100 Subject: [PATCH 05/13] Fix syntax for virtual environment setup commands prevents issues with the "typing" feature in some lab envs --- Instructions/Labs/06-translate-text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ``` From 1cde08fdf2801e8440cbe079bfa59fcb2c312a40 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 13:06:14 +0100 Subject: [PATCH 06/13] Fix command syntax in speech lab instructions prevents issues with the "typing" feature in some lab envs --- Instructions/Labs/07-speech.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ``` From 691cc825d8b39f728a10cdf8414d100fafe84c02 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 13:06:27 +0100 Subject: [PATCH 07/13] Fix command syntax in speech translation lab instructions prevents issues with the "typing" feature in some lab envs --- Instructions/Labs/08-translate-speech.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ``` From 2a8abe8fa58159f9c2bf956dafd6ced4c84de327 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 13:06:59 +0100 Subject: [PATCH 08/13] Fix command syntax for virtual environment setup prevents issues with the "typing" feature in some lab envs --- Instructions/Labs/09-audio-chat.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ``` From 0d120c65a1aa9ae1e51e33e991d243226ab98708 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 21:13:04 +0100 Subject: [PATCH 09/13] Improve readability of setup instructions Split the command into multiple lines for better readability. --- Instructions/Labs/02-qna.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Instructions/Labs/02-qna.md b/Instructions/Labs/02-qna.md index 6bdf84c3..741afc09 100644 --- a/Instructions/Labs/02-qna.md +++ b/Instructions/Labs/02-qna.md @@ -177,7 +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: From debc689868b6d79a1855b8c98db9da01381b22d5 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 21:13:36 +0100 Subject: [PATCH 10/13] Fix command syntax in text analysis lab instructions Updated command syntax for activating the virtual environment. --- Instructions/Labs/01-analyze-text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ``` From 274413dd9d88e9d4f6f84bf74023e23471aa7712 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 21:13:57 +0100 Subject: [PATCH 11/13] Format installation command for clarity Split the command into multiple lines for better readability. --- Instructions/Labs/03-language-understanding.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Instructions/Labs/03-language-understanding.md b/Instructions/Labs/03-language-understanding.md index 9318a513..bd96860f 100644 --- a/Instructions/Labs/03-language-understanding.md +++ b/Instructions/Labs/03-language-understanding.md @@ -360,7 +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: From 6850ead0675da557965307b6758690a9cee99f89 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 21:14:22 +0100 Subject: [PATCH 12/13] Improve readability of setup instructions Split the command to create a virtual environment and install packages into separate lines for better readability. --- Instructions/Labs/04-text-classification.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Instructions/Labs/04-text-classification.md b/Instructions/Labs/04-text-classification.md index fa9af4d4..aa462545 100644 --- a/Instructions/Labs/04-text-classification.md +++ b/Instructions/Labs/04-text-classification.md @@ -223,7 +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: From 6cd3193a3b7bf8132ad702f776f3b1ac756f7153 Mon Sep 17 00:00:00 2001 From: Vaclav Jirovsky Date: Thu, 12 Feb 2026 21:14:40 +0100 Subject: [PATCH 13/13] Improve readability of setup instructions Split the command into multiple lines for better readability. --- Instructions/Labs/05-extract-custom-entities.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Instructions/Labs/05-extract-custom-entities.md b/Instructions/Labs/05-extract-custom-entities.md index 11e949e1..72a40bd0 100644 --- a/Instructions/Labs/05-extract-custom-entities.md +++ b/Instructions/Labs/05-extract-custom-entities.md @@ -200,7 +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: