问题
My airflow bash operator suddenly getting an error ModuleNotFoundError: No module named 'pandas'
It was worked perfectly for the last 2 months but stop working from yesterday. I didn't change anything on the server or didn't update my server.
回答1:
BashOperator simply runs bash command on your machine. So check if your machine has pandas
installed on it. If not, do pip install pandas
来源:https://stackoverflow.com/questions/53953410/getting-modulenotfounderror-no-module-named-pandas-error-on-airflow-bash-oper