I recently installed Micropython on my Raspberry Pi model 3. I followed all the steps mentioned in the Raspberry pi - how to guide. https://www.raspberrypi.org/forums/viewtopic.php?t=191744
But, when I try to import the network module, it throws a 'module not found' error. I have searched a lot for the solution to my problem, but haven't found a solution yet.
I searched for the micropython-network module but it is not available on https://pypi.org/search/?q=micropython+network The closest ones are micropython-cpython-network and network. I tried using the network module but it doesn't contain the functions that I require (e.g.: WLAN). Also, I have used Micropython on the ESP32. It works fine. No errors.
I think this is something Raspberry Pi-specific.
When I write this:
import network
The error message shows:
Traceback (most recent call last):
File "<stdin>" ,line 1, in <module>
ImportError: no module named 'network'