Hi fellow Airflow users, in one of my DAGs I am executing a python function from a python module I developed via the PythonVirtualEnv operator. I want to be able to develop this module independently of Airflow, which means I also want to be able to use a different python version than the one from the Airflow version I am using. I am currently running the Docker Airflow image apache/airflow:2.1.1-python3.8 When I try to install python 3.9 as a dependency into the PythonVirtualEnv operator it throws an error saying it cannot find the python version: [cid:[email protected]]
How can I install an additional python version into my Airflow image that can be used in the PythonVirtualEnv operator but does not interfere with the python version that Airflow itself is using? Thank you very much for any help or input! Best Robert
