Apache Airflow : airflow initdb results in “ImportError: No module named json”

后端 未结 4 1831
故里飘歌
故里飘歌 2020-12-19 04:37

On Ubuntu 16.04 with Python 2.7 default version, I am trying to install Apache airflow but ran into several issues and currently I see on

apache initdb 
Tra         


        
4条回答
  •  我在风中等你
    2020-12-19 05:34

    On Mac while installing apache-airflow, I got following error:

    ERROR: apache-airflow 1.10.3 has requirement jinja2<=2.10.0,>=2.7.3, but you'll have jinja2 2.10.1 which is incompatible. ERROR: apache-airflow 1.10.3 has requirement werkzeug<0.15.0,>=0.14.1, but you'll have werkzeug 0.15.4 which is incompatible.

    Re-installing werkzeug and jinja worked for me.

    pip install jinja2>=2.10.0
    pip install werkzeug>=0.15.0
    

提交回复
热议问题