Install the Browser Agent much faster -
#!/bin/bash
# Create virtual environment if it doesn't exist
if [ ! -d "browser_use" ]; then
python3 -m venv browser_use
fi
# Source the virtual environment
source browser_use/bin/activate
# Run the setup script
./setup.sh
``
Install the Browser Agent much faster -