You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Open `.env` in your preferred text editor and add your API keys and other settings
84
84
85
-
#### Local Setup
85
+
#### Step 5: Enjoy the web-ui
86
86
1.**Run the WebUI:**
87
-
After completing the installation steps above, start the application:
88
87
```bash
89
88
python webui.py --ip 127.0.0.1 --port 7788
90
89
```
91
90
2. **Access the WebUI:** Open your web browser and navigate to `http://127.0.0.1:7788`.
92
91
3. **Using Your Own Browser(Optional):**
93
-
- Set `CHROME_PATH` to the executable path of your browser and `CHROME_USER_DATA` to the user data directory of your browser. Leave `CHROME_USER_DATA` empty if you want to use local user data.
92
+
- Set `BROWSER_PATH` to the executable path of your browser and `BROWSER_USER_DATA` to the user data directory of your browser. Leave `BROWSER_USER_DATA` empty if you want to use local user data.
- Open the WebUI in a non-Chrome browser, such as Firefox or Edge. This is important because the persistent browser context will use the Chrome data when running the agent.
Edit `.env`with your preferred text editor and add your API keys
131
+
2. Open `.env`in your preferred text editor and add your API keys and other settings
133
132
134
-
3. Run with Docker:
133
+
#### Step 3: Docker Build and Run
135
134
```bash
136
-
# Build and start the container with default settings (browser closes after AI tasks)
137
135
docker compose up --build
138
136
```
137
+
For ARM64 systems (e.g., Apple Silicon Macs), please run follow command:
139
138
```bash
140
-
# Or run with persistent browser (browser stays open between AI tasks)
141
-
CHROME_PERSISTENT_SESSION=true docker compose up --build
139
+
TARGETPLATFORM=linux/arm64 docker compose up --build
142
140
```
143
141
144
-
4. Access the Application:
145
-
- Web Interface: Open `http://localhost:7788`in your browser
142
+
#### Step 4: Enjoy the web-ui and vnc
143
+
- Web-UI: Open `http://localhost:7788`in your browser
146
144
- VNC Viewer (for watching browser interactions): Open `http://localhost:6080/vnc.html`
147
145
- Default VNC password: "youvncpassword"
148
146
- Can be changed by setting `VNC_PASSWORD`in your `.env` file
149
147
150
-
151
148
## Changelog
152
149
- [x] **2025/01/26:** Thanks to @vvincent1234. Now browser-use-webui can combine with DeepSeek-r1 to engage in deep thinking!
153
150
- [x] **2025/01/10:** Thanks to @casistack. Now we have Docker Setup option and also Support keep browser open between tasks.[Video tutorial demo](https://github.com/browser-use/web-ui/issues/1#issuecomment-2582511750).
0 commit comments