RuntimeError: By default one of Airflow's dependencies installs a GPL dependency (unidecode). 和 C...

今天安装Apache-airflow的时候遇到了一点问题,最后解决的,希望可以帮到遇到同样问题的人。
我用的pip命令
pip install apache-airflow
错误是
RuntimeError: By default one of Airflow's dependencies installs a GPL dependency (unidecode)

Command "python setup.py egg_info" failed with error code 1
解决方法是
pip install --upgrade setuptools
export AIRFLOW_GPL_UNIDECODE=yes
pip install apache-airflow

你可能感兴趣的:(RuntimeError: By default one of Airflow's dependencies installs a GPL dependency (unidecode). 和 C...)