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

后端 未结 4 1826
故里飘歌
故里飘歌 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:16

    The problem is known, and is described here, in the ASF Mail Archives

    We removed the incompatible Werkzeug library from apache master this weekend. It caused Airflow installations to fail.

    To resolve, manually install the werkzeug library in a correct version:

    pip install werkzeug>=0.15.0
    

    As explained in the mail list, this seems to be a temporary problem, and this solution is a workaround. The problem is encountered in version 1.10.3.

提交回复
热议问题