While airflow initdb, AttributeError: module' object has no attribute 'client_auth'

Viewed 6076

I have recently installed apache airflow 1.8.1, I executed following command:

airflow initdb

which returned following error:

Traceback (most recent call last):
  File "/usr/bin/airflow", line 18, in <module>
    from airflow.bin.cli import CLIFactory
  File "/usr/lib/python2.7/dist-packages/airflow/bin/cli.py", line 65, in <module>
    auth=api.api_auth.client_auth)
AttributeError: 'module' object has no attribute 'client_auth'

I tried several solutions but it doesn't work.

2 Answers
Related