How do you actually install Apache airflow

Viewed 56

I'm trying to install apache airflow to use in python.

The Airflow website mentions installing it using pip by running the commands in the picture... But where do I run these? Do I open up a command line window and put them in one by one? put it all in a .py file and run it?

enter image description here

1 Answers

These commands indeeed have to be run on the command line on your computer. Looking at the commands provided you should probably use a unix shell such as bash as I'm not sure the Windows command prompt will work with some of the commands (e.g. exporting and setting variables).

Related