Cloud Functions supports the following Python runtimes:
- Python 3.7
- Python 3.8
- Python 3.9
For instructions on how to prepare your local machine for Python development, see Setting Up a Python Development Environment.
To get started with Python on Cloud Functions, see the Quickstart.
Selecting the runtime
You can select the Python runtime for your function during deployment.
gcloud
If you are using the gcloud
command-line tool, you can specify the runtime
by using the --runtime
parameter. For example:
gcloud functions deploy NAME --runtime python38 --trigger-http
For more arguments that you can specify when you are deploying, see Deploy using the gcloud tool.
Console
If you are using the Cloud Console, you can select the runtime when you create and deploy a function. See the Cloud Console quickstart for detailed instructions.
Execution environment
The execution environment includes the runtime, the operating system, packages, and a library that invokes your function.
The Python runtime uses an execution environment based on Ubuntu 18.04. See Cloud Functions Execution Environment for more information.
Source code structure
In order for Cloud Functions to find your function's definition, each runtime has certain structuring requirements for your source code. See Writing Cloud Functions for more information.
Specifying dependencies
There are two ways to specify dependencies for Cloud Functions written
in Python: using the pip
package manager's requirements.txt
file or
packaging local dependencies alongside your function. For more information, see
Specifying dependencies in Python.
Dependency specification using the Pipfile/Pipfile.lock standard is currently not supported. Your project should not include these files.