### Local Installation - Run WebUI Source: https://github.com/browser-use/web-ui/blob/main/README.md Starts the WebUI application and provides the access URL. ```bash python webui.py --ip 127.0.0.1 --port 7788 ``` -------------------------------- ### Local Installation - Configure Environment Source: https://github.com/browser-use/web-ui/blob/main/README.md Copies the example environment file and provides instructions for editing it. ```bash cp .env.example .env ``` ```cmd copy .env.example .env ``` -------------------------------- ### Local Installation - Setup Python Environment (uv) Source: https://github.com/browser-use/web-ui/blob/main/README.md Creates a new virtual environment using uv and activates it. ```bash uv venv --python 3.11 ``` ```bash source .venv/bin/activate ``` ```powershell .\.venv\Scripts\Activate.ps1 ``` ```cmd .venv\Scripts\activate ``` -------------------------------- ### Local Installation - Clone Repository Source: https://github.com/browser-use/web-ui/blob/main/README.md Clones the web-ui repository and navigates into the project directory. ```bash git clone https://github.com/browser-use/web-ui.git cd web-ui ``` -------------------------------- ### Local Installation - Install Dependencies Source: https://github.com/browser-use/web-ui/blob/main/README.md Installs Python dependencies using uv and installs Playwright browsers. ```bash uv pip install -r requirements.txt ``` ```bash playwright install --with-deps ``` ```bash playwright install chromium --with-deps ``` -------------------------------- ### Docker Installation - Clone Repository Source: https://github.com/browser-use/web-ui/blob/main/README.md Clones the web-ui repository and navigates into the project directory for Docker installation. ```bash git clone https://github.com/browser-use/web-ui.git cd web-ui ``` -------------------------------- ### Configure Environment Variables Source: https://github.com/browser-use/web-ui/blob/main/README.md Copies the example environment file to `.env` and instructs to add API keys and settings. Supports Windows Command Prompt and macOS/Linux/Windows PowerShell. ```bash copy .env.example .env ``` ```powershell cp .env.example .env ``` -------------------------------- ### Local Installation - Custom Browser Configuration Source: https://github.com/browser-use/web-ui/blob/main/README.md Configuration for using a custom browser, including setting paths for the executable and user data directory. ```env BROWSER_PATH="C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe" BROWSER_USER_DATA="C:\\Users\\YourUsername\\AppData\\Local\\Google\\Chrome\\User Data" ``` ```env BROWSER_PATH="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" BROWSER_USER_DATA="/Users/YourUsername/Library/Application Support/Google/Chrome" ``` -------------------------------- ### Docker Compose Up Source: https://github.com/browser-use/web-ui/blob/main/README.md Builds and runs the Docker Compose services for the web UI. Includes a specific command for ARM64 systems. ```bash docker compose up --build ``` ```bash TARGETPLATFORM=linux/arm64 docker compose up --build ``` -------------------------------- ### Python Project Dependencies Source: https://github.com/browser-use/web-ui/blob/main/requirements.txt This section lists the Python packages and their versions identified as dependencies for the project. These packages cover functionalities ranging from web UI development with Gradio to AI integration using Langchain and utility functions. ```python browser-use==0.1.48 pyperclip==1.9.0 gradio==5.27.0 json-repair langchain-mistralai==0.2.4 MainContentExtractor==0.0.4 langchain-ibm==0.3.10 langchain_mcp_adapters==0.0.9 langgraph==0.3.34 langchain-community ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.