Wemo dead after upgrading to .103.6: "Component error: wemo - No module named 'netdisco'"

I just upgraded to 0.103.6, and wemo seems to be causing problems. Here’s what I see in the main home assistant log file:
Component error: wemo - No module named 'netdisco'

My wemo config section is pretty simple:
wemo:

I’m not sure how to troubleshoot this - it looks like discovery is turned on by default, so why would it say that the module doesn’t exist?

What am I missing here?

Thanks in advance!

I had this with my konnected component, something to do with optional dependencies afaik.
The same issue has also been reported for roku component

Looks like you aren’t running hassio, so you should be able to resolve it with (substitute your python version for 3.7 and run inside venv if you are running that way).
python3.7 -m pip install netdisco

That was it! Thank you. It did not occur to me that the Wemo discovery would rely on a separate python lib!