Skip to content

Commit e31cbe8

Browse files
committed
remove new include
1 parent cf05c55 commit e31cbe8

File tree

2 files changed

+40
-30
lines changed

2 files changed

+40
-30
lines changed

articles/azure-functions/create-first-function-cli-python.md

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,26 @@ In this section, you create a function project that contains a single function.
109109

110110
1. Run this command to make sure that the Azure Functions library is installed in the environment.
111111

112-
[!INCLUDE [functions-install-python-requirements](../../includes/functions-install-python-requirements.md)]
112+
### [bash](#tab/bash)
113+
114+
```bash
115+
.venv/bin/python -m pip install -r requirements.txt
116+
```
117+
118+
### [PowerShell](#tab/powershell)
119+
120+
```powershell
121+
.venv\Scripts\python -m pip install -r requirements.txt
122+
```
123+
124+
125+
### [Cmd](#tab/cmd)
126+
127+
```cmd
128+
.venv\Scripts\python -m pip install -r requirements.txt
129+
```
130+
131+
---
113132
114133
::: zone-end
115134
::: zone pivot="python-mode-decorators"
@@ -165,7 +184,26 @@ In this section, you create a function project and add an HTTP triggered functio
165184

166185
1. Run this command to make sure that the Azure Functions library is installed in the environment.
167186

168-
[!INCLUDE [functions-install-python-requirements](../../includes/functions-install-python-requirements.md)]
187+
### [bash](#tab/bash)
188+
189+
```bash
190+
.venv/bin/python -m pip install -r requirements.txt
191+
```
192+
193+
### [PowerShell](#tab/powershell)
194+
195+
```powershell
196+
.venv\Scripts\python -m pip install -r requirements.txt
197+
```
198+
199+
200+
### [Cmd](#tab/cmd)
201+
202+
```cmd
203+
.venv\Scripts\python -m pip install -r requirements.txt
204+
```
205+
206+
---
169207

170208
## Start the storage emulator
171209

includes/functions-install-python-requirements.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

0 commit comments

Comments
 (0)