File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
scenarios/ConfigurePythonContainer Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ Results:
9999}
100100```
101101
102- ## Step 2: Show the current Python version
102+ ## Show the current Python version
103103
104104The following command retrieves the Python runtime version currently used by your Azure App Service.
105105
@@ -115,7 +115,7 @@ Results:
115115" PYTHON|3.10"
116116```
117117
118- ## Step 3: Set the desired Python version
118+ ## Set the desired Python version
119119
120120Update your Azure App Service instance to use a specific Python version. Replace the desired Python version (e.g., "PYTHON|3.11") as needed.
121121
@@ -124,6 +124,7 @@ export DESIRED_PYTHON_VERSION="PYTHON|3.11"
124124az webapp config set --resource-group $RESOURCE_GROUP --name $APP_NAME --linux-fx-version $DESIRED_PYTHON_VERSION
125125```
126126
127+ ## Verify Version
127128Verify the updated Python version:
128129
129130``` bash
@@ -138,7 +139,7 @@ Results:
138139" PYTHON|3.11"
139140```
140141
141- ## Step 4: List all supported Python runtime versions
142+ ## List all supported Python runtime versions
142143
143144Use the following command to view all Python versions supported by Azure App Service on Linux.
144145
You can’t perform that action at this time.
0 commit comments