Skip to content

Instantly share code, notes, and snippets.

@aarong1
Last active August 5, 2023 20:57
Show Gist options
  • Save aarong1/569be80ade54b6169d8e63c9e8de6e6b to your computer and use it in GitHub Desktop.
Save aarong1/569be80ade54b6169d8e63c9e8de6e6b to your computer and use it in GitHub Desktop.
the correct (after much trial and error ) way of install apache airflow on macOS
#https://airflow.apache.org/docs/apache-airflow/stable/installation/installing-from-pypi.html
python -m venv .venv
source .venv/bin/activate
# AIRFLOW_VERSION=2.6.3
export AIRFLOW_HOME=~/airflow
sudo pip3 install "apache-airflow[celery]==2.6.3" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.6.3/constraints-3.10.txt"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment