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

前端 未结 8 1968
被撕碎了的回忆
被撕碎了的回忆 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:20

    In case you are installing the airflow on Windows and through Python terminal then you need to write this:

    Set SLUGIFY_USES_TEXT_UNIDECODE=yes

    pip install apache-airflow[postgres]

    It worked with me after I struggled with trying many other options. Hope this will work with you too.

提交回复
热议问题