mirror of
https://github.com/k4yt3x/video2x.git
synced 2026-02-15 09:44:46 +08:00
docs(book): added the docs.video2x.org mdBook source files and pipeline
Signed-off-by: k4yt3x <i@k4yt3x.com>
This commit is contained in:
3
docs/book/src/installing/README.md
Normal file
3
docs/book/src/installing/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# Installing
|
||||
|
||||
Instructions for installing this project.
|
||||
19
docs/book/src/installing/linux.md
Normal file
19
docs/book/src/installing/linux.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# Linux
|
||||
|
||||
Instructions for installing this project on Linux systems.
|
||||
|
||||
## Arch Linux
|
||||
|
||||
Arch users can install the project from the AUR.
|
||||
|
||||
```bash
|
||||
yay -S video2x-git
|
||||
```
|
||||
|
||||
## Ubuntu
|
||||
|
||||
Ubuntu users can download the `.deb` packages from the [releases page](https://github.com/k4yt3x/video2x/releases/latest). Install the package with the APT package manager:
|
||||
|
||||
```bash
|
||||
apt-get install ./video2x-linux-ubuntu2404-amd64.deb
|
||||
```
|
||||
7
docs/book/src/installing/windows-qt6.md
Normal file
7
docs/book/src/installing/windows-qt6.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# Windows (Qt6)
|
||||
|
||||
You can download the installer for Video2X Qt6 from the [releases page](https://github.com/k4yt3x/video2x/releases/latest). The installer file's name is `video2x-qt6-windows-amd64-installer.exe`.
|
||||
|
||||
Download then double-click the installer to start the installation process. The installer will guide you through the installation process. You can choose the installation directory and whether to create a desktop shortcut during the installation.
|
||||
|
||||
After the installation is complete, you can start Video2X Qt6 by double-clicking the desktop shortcut.
|
||||
12
docs/book/src/installing/windows.md
Normal file
12
docs/book/src/installing/windows.md
Normal file
@@ -0,0 +1,12 @@
|
||||
# Windows
|
||||
|
||||
You can download the latest version of the Windows build from the [releases page](https://github.com/k4yt3x/video2x/releases/latest). Here are the steps to download and install the pre-built binaries to `%LOCALAPPDATA%\Programs`.
|
||||
|
||||
```bash
|
||||
$latestTag = (Invoke-RestMethod -Uri https://api.github.com/repos/k4yt3x/video2x/releases/latest).tag_name
|
||||
curl -LO "https://github.com/k4yt3x/video2x/releases/download/$latestTag/video2x-windows-amd64.zip"
|
||||
New-Item -Path "$env:LOCALAPPDATA\Programs\video2x" -ItemType Directory -Force
|
||||
Expand-Archive -Path .\video2x-windows-amd64.zip -DestinationPath "$env:LOCALAPPDATA\Programs\video2x"
|
||||
```
|
||||
|
||||
You can then add `%LOCALAPPDATA%\Programs\video2x` to your `PATH` environment variable to run `video2x` from the command line.
|
||||
Reference in New Issue
Block a user