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
Copy file name to clipboardExpand all lines: i18n/en/docusaurus-plugin-content-docs/current/faq.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,6 +138,9 @@ If you absolutely must run two Open-LLM-VTuber backends simultaneously, or if an
138
138
## Web/Client Related
139
139
140
140
### What to do if Web displays `{"detail": "Not Found"}`?
141
+
142
+

143
+
141
144
- The frontend code hasn't been pulled to local. This error appears when you haven't obtained the complete project code. Please run `git submodule update --init --recursive` in the project directory to pull the project code.
142
145
- For details, please refer to the two ways of obtaining project code mentioned in [Quick Start/1. Get Project Code](quick-start#1-get-project-code).
Copy file name to clipboardExpand all lines: i18n/en/docusaurus-plugin-content-docs/current/quick-start.md
+22-4Lines changed: 22 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -242,15 +242,19 @@ brew install uv
242
242
243
243
For more uv installation methods, refer to: [Installing uv](https://docs.astral.sh/uv/getting-started/installation/)
244
244
245
-
## Manual Deployment Guide
245
+
## Deployment Guide
246
246
247
247
### 1. Get the Project Code
248
248
249
249
There are two methods to acquire the project code.
250
250
251
251
<TabsgroupId="code-clone-method">
252
252
<TabItemvalue="release"label="Download Stable Release from GitHub">
253
-
Visit the latest [release page](https://github.com/Open-LLM-VTuber/Open-LLM-VTuber/releases) and download the ZIP file named similar to `Open-LLM-VTuber-v1.x.x.zip`.
253
+
Go to our [**Release page**](https://github.com/Open-LLM-VTuber/Open-LLM-VTuber/releases) and download the ZIP file that looks like `Open-LLM-VTuber-v1.x.x.zip` from the **release page**.
254
+
255
+
:::warning
256
+
Note that you need to download from the **Release Page**, **NOT the "Download ZIP" option from the "Code" button on the GitHub main page**. Don't do that!
257
+
:::
254
258
255
259
If you want Desktop Pet Mode or desktop client version, you can also download files starting with `open-llm-vtuber-electron` - Windows users download the exe file, while the macOS users download the dmg file. This desktop client can launch Pet Mode after you configured backend and successfully start the backend server.
256
260
@@ -260,8 +264,10 @@ There are two methods to acquire the project code.
260
264
Ensure stable network connection when using Git. Mainland China users may need to use a proxy.
261
265
:::
262
266
263
-
:::info
264
-
Starting from `v1.0.0`, frontend code (user interface) has been moved to a separate repository. We've established build workflows and linked frontend code via git submodule to the `frontend` directory. Adding the `--recursive` flag is therefore required in git clone command.
267
+
:::warning
268
+
The `--recursive` flag is REQUIRED for the git clone command.
269
+
270
+
This is because, starting from `v1.0.0`, frontend code (user interface) has been moved to a separate repository. We've established build workflows and linked frontend code via git submodule to the `frontend` directory. Adding the `--recursive` flag is therefore required in git clone command. Without the `--recursive` flag, you will run into the problem that [the web displays "Detail: Not found"](faq.md#what-to-do-if-web-displays-detail-not-found)
265
271
:::
266
272
267
273
```bash
@@ -275,6 +281,18 @@ There are two methods to acquire the project code.
275
281
For Desktop Pet Mode or desktop client, visit [Open-LLM-VTuber-Web Releases](https://github.com/Open-LLM-VTuber/Open-LLM-VTuber-Web/releases/latest) and download `open-llm-vtuber-electron` files - Windows users download the exe file, while the macOS users download the dmg file. This desktop client can launch Pet Mode after you configured backend and successfully start the backend server.
276
282
277
283
</TabItem>
284
+
285
+
<TabItemvalue="git-zip"label="Don't download the ZIP from the Code button">
286
+

287
+
288
+
Please **DO NOT** download the ZIP file from the green "Code" button on the GitHub main page, nor use the clone command provided there to get the project code.
289
+
290
+
Why can't I download the ZIP file from the Code button?
291
+
- The ZIP file obtained from the Code button **does not contain Git information**. This is generated by GitHub, and I have no control over it.
292
+
- The front end of this project is linked by submodules. If you download the ZIP file from this button, you will not get the front-end code, which will cause [the browser to display a "Detail Not Found" error](faq.md#what-to-do-if-the-web-shows-detailnotfound).
293
+
- The update mechanism of this project relies on Git, so missing Git information **will prevent you from using the update function**.
0 commit comments