Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
kb:airflow [2017/06/25 10:12] – yehuda | kb:airflow [2022/01/03 16:03] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
Dependencis: | Dependencis: | ||
<code bash> | <code bash> | ||
- | yum install gcc python python-devel MariaDB MariaDB-devel | + | yum install gcc python python-devel MariaDB MariaDB-devel |
+ | pip install airflow | ||
+ | pip install airflow[devel, | ||
+ | </ | ||
+ | |||
+ | http:// | ||
+ | <code bash> | ||
+ | export AIRFLOW_HOME=~/ | ||
+ | |||
+ | # install from pypi using pip | ||
+ | pip install airflow | ||
+ | |||
+ | # initialize the database | ||
+ | airflow initdb | ||
+ | |||
+ | # start the web server, default port is 8080 | ||
+ | airflow webserver -p 8080 | ||
</ | </ |