Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install apache airflow from github

Problem: I want to install apache-airflow using the latest version of Apache-Airflow on Github with all the dependencies?

How can I do that using pip?

Also is it safe to use that in the production environment?

like image 556
kaxil Avatar asked Dec 19 '22 02:12

kaxil


1 Answers

Using pip:

$ pip install git+https://github.com/apache/incubator-airflow.git@v1-10-stable

Yes, it is safe.

You will need gcc.

like image 87
J_H Avatar answered Dec 26 '22 00:12

J_H