I currently am attempting to execute jupyter notebooks with apache airflow and papermill.
In order to use my custom enviorments and custom user kernels I am using the BashOperator and running a command in this format
runuser {user} -c 'papermill {input_notebook_path} {output_notebook_path} -k {kernel_name}'
This is what the Dag log looks like after attempting execution: Dag logs
I have been unable to use the python or papermill operator because the kernels/envs that the notebooks use are not installed globally.
Any ideas?