Python’s functionality can be extended with scripts that are made to do different tasks. They are sometimes super easy to work with and can perform a myriad of tasks with just a few lines of code.
You can browse through many packages here: https://pypi.org/
to install these packages you need to have python software already installed in your computer.
Open Command Prompt
syntax for installing a package using PIP
pip install your-package-name-here
And let’s say you want to work with UART or serial data. You can install pyserial.
pip install pyserial
after your work is done you can also remove or uninstall the package using
pip uninstall pyserial
Leave a Reply