We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c3e8d9 commit 70e0376Copy full SHA for 70e0376
4-azure-functions-python/README.md
@@ -8,6 +8,9 @@ If you are at an event, run the following command on the CLI:
8
9
```powershell
10
docker run --rm -v ${PWD}:/pwd/ -w /pwd/ -p 7071:7071 -it aaronmsft/azure-functions-core-tools:latest bash
11
+# create a virtual environment
12
+python3.6 -m venv env
13
+. env/bin/activate
14
```
15
16
Create a directory for the sample code and `cd` into it:
@@ -30,6 +33,7 @@ Initialize a new Azure Functions App project.
30
33
func init prime_calculator
31
34
32
35
36
+<!-- does not show in bash -->
37
Highlight `python (preview)` with the arrow keys in the list of worker runtimes, press `Enter` to select. You should see output resembling:
38
39
``` powershell
0 commit comments