Skip to content

Commit 6f3633f

Browse files
authored
Merge pull request #87194 from ggailey777/patch-10
Add venv requirement for Python custom Linux
2 parents d3ec920 + e1cca67 commit 6f3633f

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

articles/azure-functions/functions-create-function-linux-custom-image.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
---
22
title: Create Azure Functions on Linux using a custom image
33
description: Learn how to create Azure Functions running on a custom Linux image.
4-
services: functions
5-
keywords:
64
author: ggailey777
75
ms.author: glenga
86
ms.date: 06/25/2019
97
ms.topic: tutorial
108
ms.service: azure-functions
119
ms.custom: mvc
12-
ms.devlang: azure-cli
13-
manager: jeconnoc
10+
manager: gwallace
1411
---
1512

1613
# Create a function on Linux using a custom image
@@ -51,7 +48,7 @@ You can also use the [Azure Cloud Shell](https://shell.azure.com/bash).
5148

5249
## Create the local function app project
5350

54-
Run the following command from the command line to create a function app project in the `MyFunctionProj` folder of the current local directory.
51+
Run the following command from the command line to create a function app project in the `MyFunctionProj` folder of the current local directory. For a Python project, you [must be running in a virtual environment](functions-create-first-function-python.md#create-and-activate-a-virtual-environment-optional).
5552

5653
```bash
5754
func init MyFunctionProj --docker
@@ -63,7 +60,7 @@ When prompted, choose a worker runtime from the following languages:
6360

6461
* `dotnet`: creates a .NET Core class library project (.csproj).
6562
* `node`: creates a JavaScript project.
66-
* `python`: creates a Python project.
63+
* `python`: creates a Python project.
6764

6865
When the command executes, you see something like the following output:
6966

0 commit comments

Comments
 (0)