bito-code-review[bot] commented on PR #44209: URL: https://github.com/apache/superset/pull/44209#issuecomment-5651279091
<!-- Bito Reply --> The suggestion is correct. In Python, the `playwright` package only provides the library interface; the browser binaries must be installed separately using the `playwright install` command. Adding the package to `pyproject.toml` does not automatically trigger the download of these binaries. To resolve this, you should ensure that the environment where the code runs executes `playwright install` as part of the setup or deployment process. You cannot resolve this solely by modifying `pyproject.toml`. **pyproject.toml** ``` playwright = ["playwright>=1.63.0, <2"] ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
