I tried to follow this guide to test huey
task queue on windows:
https://huey.readthedocs.io/en/latest/guide.html
when I run this command:
huey_consumer.py demo.huey
This Error shows up:
from huey.consumer import Consumer
ImportError: No module named huey.consumer
but I tried this in python console without the issue:
from huey.consumer import Consumer
not sure why it got the issue when using huey_consumer.py