### Install Yoctopuce Python Library via pip Source: https://github.com/yoctopuce/yoctolib_python.git/blob/master/README.md This command installs the Yoctopuce library for Python from the Python Package Index (PyPI) using the pip package manager. This is the recommended way to get the library. ```Shell pip install yoctopuce ``` -------------------------------- ### Upgrade Yoctopuce Python Library via pip Source: https://github.com/yoctopuce/yoctolib_python.git/blob/master/README.md This command upgrades an existing installation of the Yoctopuce library for Python to the latest version available on PyPI. It ensures you have the most recent features and bug fixes. ```Shell pip install -U yoctopuce ``` -------------------------------- ### Import Yoctopuce Modules in Python Source: https://github.com/yoctopuce/yoctolib_python.git/blob/master/README.md This Python code demonstrates how to import specific modules from the Yoctopuce library, such as yocto_api and yocto_temperature, when the library is installed via PyPI. This is necessary to access the library's functionalities. ```Python from yoctopuce.yocto_api import * from yoctopuce.yocto_temperature import * ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.