From 6e5c62b3f22d22ea55bfe56cbd81e8110970ae74 Mon Sep 17 00:00:00 2001 From: Anton Burnashev Date: Mon, 17 Apr 2023 16:52:56 +0200 Subject: [PATCH] Fix docs: add an "apache" prefix to pip install --- docs/apache-airflow/howto/operator/python.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow/howto/operator/python.rst b/docs/apache-airflow/howto/operator/python.rst index 6e4410bb9be24..e2bf4b11e5ba3 100644 --- a/docs/apache-airflow/howto/operator/python.rst +++ b/docs/apache-airflow/howto/operator/python.rst @@ -70,7 +70,7 @@ PythonVirtualenvOperator ======================== Use the ``@task.virtualenv`` decorator to execute Python callables inside a new Python virtual environment. -The ``virtualenv`` package needs to be installed in the environment that runs Airflow (as optional dependency ``pip install airflow[virtualenv] --constraint ...``). +The ``virtualenv`` package needs to be installed in the environment that runs Airflow (as optional dependency ``pip install apache-airflow[virtualenv] --constraint ...``). .. warning:: The ``@task.virtualenv`` decorator is recommended over the classic :class:`~airflow.operators.python.PythonVirtualenvOperator`