You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Quickstart: Create a function in Azure that responds to HTTP requests
@@ -18,7 +18,12 @@ Before you begin, you must have the following:
18
18
19
19
+ An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio).
20
20
21
+
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell"
21
22
+ The [Azure Functions Core Tools](./functions-run-local.md#v2) version 2.7.1846 or a later 2.x version.
23
+
::: zone-end
24
+
::: zone pivot="programming-language-python"
25
+
+ Python 3.6 amd 3.7 requires [Azure Functions Core Tools](./functions-run-local.md#v2) version 2.7.1846 or a later 2.x version. Python 3.8 requires [version 3.x](./functions-run-local.md#v2) of the Core Tools.
26
+
::: zone-end
22
27
23
28
+ The [Azure CLI](/cli/azure/install-azure-cli) version 2.0.76 or later.
24
29
::: zone pivot="programming-language-javascript,programming-language-typescript"
@@ -263,10 +268,10 @@ Use the following Azure CLI commands to create these items. Each command provide
263
268
264
269
The storage account incurs only a few cents (USD) for this quickstart.
265
270
266
-
1. Create the Functions app using the [az functionapp create](/cli/azure/functionapp#az-functionapp-create) command. In the following example, replace `<STORAGE_NAME>` with the name of the account you used in the previous step, and replace `<APP_NAME>` with a globally unique name appropriate to you. The `<APP_NAME>` is also the default DNS domain for the function app.
271
+
1. Create the function app using the [az functionapp create](/cli/azure/functionapp#az-functionapp-create) command. In the following example, replace `<STORAGE_NAME>` with the name of the account you used in the previous step, and replace `<APP_NAME>` with a globally unique name appropriate to you. The `<APP_NAME>` is also the default DNS domain for the function app.
267
272
268
273
::: zone pivot="programming-language-python"
269
-
If you are using Python 3.8, change `--runtime-version` to `3.8` and `--functions_version` to `3`
274
+
If you are using Python 3.8, change `--runtime-version` to `3.8` and `--functions_version` to `3`.
270
275
271
276
If you are using Python 3.6, change `--runtime-version` to `3.6`.
0 commit comments