### Install shinywidgets Python Package Source: https://github.com/posit-dev/py-shinywidgets/blob/main/README.md This command installs the `shinywidgets` Python package using pip, making it available for use in Shiny applications. It's the standard way to get the library for production use. ```sh pip install shinywidgets ``` -------------------------------- ### Set Up shinywidgets for Development Source: https://github.com/posit-dev/py-shinywidgets/blob/main/README.md These commands prepare the `shinywidgets` project for local development. The first command installs the package in editable mode along with development and testing dependencies. The second command navigates into the `js` directory and starts the yarn watcher for JavaScript development. ```sh pip install -e ".[dev,test]" cd js && yarn watch ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.