Reputation: 18874
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?
Upvotes: 4
Views: 3789
Reputation: 20505
Using pip:
$ pip install git+https://github.com/apache/incubator-airflow.git@v1-10-stable
Yes, it is safe.
You will need gcc.
Upvotes: 5
Reputation: 1553
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.
Upvotes: 4
Reputation: 18874
I found this more useful:
pip install git+git://github.com/apache/incubator-airflow.git
It installs the latest version in development.
Upvotes: 2