How to Solve NameError: name 'BashOperator' is not defined -- airflow

Solution: Import the 'BashOperator' module

# Add the following line to the top of your code
from airflow.operators.bash import BashOperator

 

For more information:
airflow BashOperator