gunicorn引起的气流Web服务器错误,但新gunicorn无法更新PATH

时间:2019-12-23 06:57:26

标签: python airflow databricks

我想用Ubuntu在数据块上安装气流。

我在databricks笔记本中的代码:

   %sh
   pip3 install apache-airflow 

   %sh
   airflow initdb

   %sh
   airflow webserver -p 8080

我遇到错误:

   Error: No module named airflow.www.gunicorn_config

我尝试了这个 airflow systemd fails due to gunicorn

但是,它对我不起作用。

我检查了:

 %sh
  which gunicorn

我知道了

 /databricks/python2/bin/gunicorn

 %sh
 whereis gunicorn

我知道了

 gunicorn: /databricks/python2/bin/gunicorn /databricks/python3/bin/gunicorn

我认为原因是python2安装的gunicorn不支持python3安装的气流。

所以,我尝试了:

 %sh
 export PATH=/databricks/python3/bin/gunicorn:$PATH

但是,PATH无法更新。

我该怎么做?

谢谢

0 个答案:

没有答案