ShotokanZH / MiWiFi_Mesh_Node_Adder

Bypasses the need to set the Xiaomi device to Singapore region by adding a node via API
MIT License
55 stars 10 forks source link

ModuleNotFoundError: No module named 'requests' #1

Closed freakvencer closed 3 years ago

freakvencer commented 3 years ago

I just get an error message when starting the script, what am i doing wrong?

ModuleNotFoundError: No module named 'requests'

ShotokanZH commented 3 years ago

Hi, the requests module is missing in your system. Just install it via: python3 -m pip3 install requests

Beware: python 3.7 or higher is required (because of f-strings)

On Mon, Jan 4, 2021, 20:54 freakvencer notifications@github.com wrote:

I just get an error message when starting the script, what am i doing wrong?

ModuleNotFoundError: No module named 'requests'

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/ShotokanZH/MiWiFi_Mesh_Node_Adder/issues/1, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAUGQNL26YEAAJ4LSWDLECTSYIMG3ANCNFSM4VTPIZHQ .

freakvencer commented 3 years ago

thanks, a lot.

ShotokanZH commented 3 years ago

You are welcome!