November 2018
Intermediate to advanced
360 pages
9h 36m
English
Take a look at the following steps:
virtualenv .aflow. .aflow/bin/activateexport AIRFLOW_GPL_UNIDECODE=yespip install apache-airflowpip install matplotlib
With virtualenv, you might want to specify the Python interpreter with the -p parameter, like this: virtualenv -p /usr/bin/python3 .aflow. Do not forget to activate the environment before starting Airflow.
airflow initdb
This will initialize an SQLite database. This is only useful for very basic testing purposes: with an SQLite database, no concurrency will be possible, defeating a lot of the purpose of using a workflow ...