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
### while installing,you can skip reading install information by enter q, and set default choice to finish installation
120
+
121
+
```
122
+
4.3.3.1 Configure environment paths:
123
+
```bash
124
+
# Add Miniconda to PATH (replace /path/to/ with actual installation path)
125
+
export PATH="/path/to/miniconda3/bin:$PATH"### defaoult path is: /root/miniconda3/bin
126
+
127
+
# Initialize Conda
128
+
conda init
129
+
source~/.bashrc
130
+
131
+
# Verify installation
132
+
conda --version
133
+
```
134
+
135
+
4.3.4 Frontend Build and Test
136
+
137
+
4.3.4.1 Enter open-webui & Create a `.env` file:
138
+
139
+
```bash
140
+
cd open-webui
141
+
cp -RPp .env.example .env
142
+
```
143
+
144
+
4.3.4.2 Update Ollama Serving Address in `.env` and Modify the `.env` file to configure the **Ollama backend URL**. This ensures that requests to `/ollama` are correctly redirected to the specified backend:
145
+
146
+
```ini
147
+
# Ollama URL for the backend to connect
148
+
OLLAMA_BASE_URL='http://ip_address:port'
149
+
150
+
# OpenAI API Configuration (Leave empty if not used)
151
+
OPENAI_API_BASE_URL=''
152
+
OPENAI_API_KEY=''
153
+
154
+
# AUTOMATIC1111 API (Uncomment if needed)
155
+
# AUTOMATIC1111_BASE_URL="http://localhost:7860"
156
+
157
+
# Disable Tracking & Telemetry
158
+
SCARF_NO_ANALYTICS=true
159
+
DO_NOT_TRACK=true
160
+
ANONYMIZED_TELEMETRY=false
161
+
```
162
+
Ensure you replace `ip_address:port` with the actual IP address and port of your **Ollama server** if necessary.
3.open browser and goto address: https://{ip_address}:18080/(The ip address is your server ip)
238
+
239
+
4.Example:
240
+
get quote data and parse
241
+
242
+

243
+
244
+
### <h2 id="issue_note">IssueNote:</h2>
245
+
- While building, meet with `Cannot find package `,you can try command:
246
+
247
+
```bash
248
+
npm install pyodide
249
+
```
250
+
251
+
### <h2 id="tips">Tips:</h2>
252
+
- Downloading packages from remote sites can be slow. To speed up the process, you can specify a local mirror such as **Aliyun** when installing packages:
0 commit comments