philiprbrenan commented on issue #36216:
URL: https://github.com/apache/airflow/issues/36216#issuecomment-1855011057

   A viable command sequence for installing Airflow on an AWS instance with a 
public ip address:
   
   ```
   sudo apt update
   sudo apt install python3 python-is-python3  python3-pip lynx
   mkdir airflow
   export AIRFLOW_HOME=~/airflow
   AIRFLOW_VERSION=2.7.3
   PYTHON_VERSION="$(python --version | cut -d " " -f 2 | cut -d "." -f 1-2)"
   
CONSTRAINT_URL="https://raw.githubusercontent.com/apache/airflow/constraints-${AIRFLOW_VERSION}/constraints-${PYTHON_VERSION}.txt";
   sudo pip install "apache-airflow==${AIRFLOW_VERSION}" --constraint 
"${CONSTRAINT_URL}" 
   airflow standalone
   
   firefox http://<ip-address-of-instance>:8080
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to