4
votes

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?

3

3 Answers

5
votes

Using pip:

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

Yes, it is safe.

You will need gcc.

4
votes

I generally use this

$  pip install git+https://github.com/apache/incubator-airflow.git@v1-10-stable#egg=apache-airflow[async,crypto,celery,kubernetes,jdbc,password,postgres,s3,slack]

In this way I'm able able to install extra airflow features.

2
votes

I found this more useful:

pip install git+git://github.com/apache/incubator-airflow.git

It installs the latest version in development.