Spaces:
Running
Running
File size: 378 Bytes
1ea26af | 1 2 3 4 5 6 7 8 9 10 | #!/usr/bin/env bash
set -e
# Install Playwright Chromium into the runtime user's cache path so that
# the same path is used at runtime by Playwright default lookup.
export PLAYWRIGHT_BROWSERS_PATH=/home/user/.cache/ms-playwright
# Skip host requirement validation (no root on HF Spaces)
export PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS=1
python -m playwright install chromium
|