Running brownie script "ModuleNotFoundError: No module named 'yaml'"

How do I deploy a smart contract when I get “no module name yaml” found form brownie script below.
brownie run C:\chainlink-mix\scripts\price_feed_scripts\deploy_price_consumer_v3.py --network kovan

Hi @fovanessians - it sounds like you need to install the yaml module. Try running pip3 list to see whether you have the PyYaml package; if not, PyYaml is likely installed in an incorrect location.
You can also check this thread out to see how others have fixed this issue.