Error while install airflow: By default one of Airflow's dependencies installs a GPL

前端 未结 8 1963
被撕碎了的回忆
被撕碎了的回忆 2021-01-31 13:50

Getting the following error after running pip install airflow[postgres] command:

> raise RuntimeError("By default one of Airflow\'s dependenc         


        
8条回答
  •  无人及你
    2021-01-31 14:16

    If you are installing using sudo run one of these commands:

    sudo AIRFLOW_GPL_UNIDECODE=yes pip3 install apache-airflow
    

    OR

    sudo SLUGIFY_USES_TEXT_UNIDECODE=yes pip3 install apache-airflow
    

    NOTE: If pip3 (python3) does not work for you, try pip command. The pip command can be pointing to python2 or python3 installation depending on your system. Verify this by running pip --version.

提交回复
热议问题