Taragolis commented on issue #37344: URL: https://github.com/apache/airflow/issues/37344#issuecomment-1939298188
Anyway instead of replace `python` to `python3` better write note that user should replace by appropriate command or even full path: `/usr/bin/python3.10` or `/home/awesomeuser/.pyenv/versions/3.10.6/bin/python` `python3` not always a correct option if end user try to use provided python version by selected linux distribution and install it into the user space (not recommended) or even as a root (highly not recommend), e.g. some abstract Linux distribution might have pretty old version of default python interpreter, and `python3` may stands for Python 3.7, which is also would not work, and instead of that user should run `python3.9` or `python3.8`, etc. In the other cases when user install airflow into the activated [Virtual Environment ](https://docs.python.org/3/tutorial/venv.html) , into the [Official Python Docker Image](https://docs.python.org/3/tutorial/venv.html), or into the [Official Airflow Docker Image](https://hub.docker.com/r/apache/airflow) then `python` and `python3` are links to the same python interpreter -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
