I have installed both commands still getting this error. pip install mqtt pip install paho-mqtt
ModuleNotFoundError: No module named 'mqtt_test'
I was expecting to run my Django App fine.
I have installed both commands still getting this error. pip install mqtt pip install paho-mqtt
ModuleNotFoundError: No module named 'mqtt_test'
I was expecting to run my Django App fine.
Module not found error only occurs when the module is not installed. If the module is available on PyPi, then run pip install mqtt_test
on your cmd
. Elsewise, you can manually install the module by checking their docs.
You could also check this out: https://pypi.org/project/paho-mqtt.