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