File size: 317 Bytes
dff33ce | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash
# Script de instalación automática para Playwright en Hugging Face Spaces
echo "🚀 Instalando Playwright browsers..."
# Instalar browsers de Playwright
python -m playwright install chromium
# Verificar instalación
python -m playwright install-deps
echo "✅ Playwright configurado correctamente"
|