8000 Add install steps to README.md by mavaddat · Pull Request #62 · Djdefrag/QualityScaler · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add install steps to README.md #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@
## What is QualityScaler?
Qualityscaler is a Windows app powered by AI to enhance, enlarge and reduce noise in photographs and videos.

## Installation
1. Download the [latest release](../../releases/latest) or clone the repository
```sh
git clone https://github.com/Djdefrag/QualityScaler.git
```
2. Install requirements (using Python > 3, ≤ 3.10 )
```sh
cd QualityScaler
python -m pip install --requirement ./requirements.txt # torch-directml requires Python 3.10
```
3. Start QualityScaler
```sh
python ./QualityScaler.py
```

## Other AI projects.🤓
- https://github.com/Djdefrag/RealESRScaler / RealScaler - image/video AI upscaler app (Real-ESRGAN)
- https://github.com/Djdefrag/FluidFrames.RIFE / FluidFrames.RIFE - video AI frame generation app (RIFE-HDv3)
Expand Down
0