Gaming PC

How To Manage MicroPython Modules With Mip on Raspberry Pi Pico

Managing modules in Python is often handled through pip, a Python package manager that lists available Python modules using repositories provided by PyPi. But what’s in MicroPython? There was upip, a micro version of pip, and now there’s mip, the new official lightweight package manager for MicroPython.

Mip is designed for all MicroPython devices, online or offline. Internet-connected devices can use it directly via the Python shell, while offline devices can use the tool mpremote to install modules from their computer.

Related Articles

Back to top button