From 968398970622b7be07d6cd4e1e6d488fed421812 Mon Sep 17 00:00:00 2001 From: Ashwin Shankar Date: Wed, 15 Jul 2020 10:35:01 -0700 Subject: [PATCH 1/2] Update gcp to google in docs --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7edb1021ea132..8ac6702bd9b3b 100644 --- a/README.md +++ b/README.md @@ -112,9 +112,9 @@ pip install apache-airflow==1.10.11 \ --constraint https://raw.githubusercontent.com/apache/airflow/1.10.11/requirements/requirements-python3.7.txt ``` -2. Installing with extras (for example postgres,gcp) +2. Installing with extras (for example postgres,google) ```bash -pip install apache-airflow[postgres,gcp]==1.10.11 \ +pip install apache-airflow[postgres,google]==1.10.11 \ --constraint https://raw.githubusercontent.com/apache/airflow/1.10.11/requirements/requirements-python3.7.txt ``` From dc559bdd9ac748216bfb5d35d634c17d5478ab68 Mon Sep 17 00:00:00 2001 From: Ashwin Shankar Date: Wed, 15 Jul 2020 11:40:16 -0700 Subject: [PATCH 2/2] Fix more occurences of gcp to google --- LOCAL_VIRTUALENV.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LOCAL_VIRTUALENV.rst b/LOCAL_VIRTUALENV.rst index 34bf31493be53..1da7be6906179 100644 --- a/LOCAL_VIRTUALENV.rst +++ b/LOCAL_VIRTUALENV.rst @@ -116,13 +116,13 @@ To create and initialize the local virtualenv: .. code-block:: bash - pip install -U -e ".[devel,]" # for example: pip install -U -e ".[devel,gcp,postgres]" + pip install -U -e ".[devel,]" # for example: pip install -U -e ".[devel,google,postgres]" Note: when you first initialize database (the next step), you may encounter some problems. -This is because airflow by default will try to load in example dags where some of them requires dependencies ``gcp`` and ``postgres``. +This is because airflow by default will try to load in example dags where some of them requires dependencies ``google`` and ``postgres``. You can solve the problem by: -- installing the extras i.e. ``[devel,gcp,postgres]`` or +- installing the extras i.e. ``[devel,google,postgres]`` or - disable the example dags with environment variable: ``export AIRFLOW__CORE__LOAD_EXAMPLES=False`` or - simply ignore the error messages and proceed