Skip to content

Build from Source

Deep edited this page Jul 16, 2026 · 1 revision

Build from Source

This guide explains how to build and run QIFY Downloader directly from the source code.


Requirements

Before you begin, install:

  • Windows 10 or Windows 11
  • Python 3.10 or newer
  • Git (optional)
  • FFmpeg

Clone the Repository

Using Git:

git clone https://github.com/deep-mistry10/QIFY-Downloader.git

Go to the project folder:

cd QIFY-Downloader

Or download the ZIP from GitHub and extract it.


Install Python Dependencies

Run:

pip install -r requirements.txt

This installs:

  • yt-dlp
  • customtkinter

Install FFmpeg

See the FFmpeg Setup page for installation instructions.

Verify installation:

ffmpeg -version

Run the Application

Start the application with:

python main.py

The QIFY Downloader window should appear.


Updating Dependencies

To update installed packages:

pip install --upgrade -r requirements.txt

Common Issues

ModuleNotFoundError

Run:

pip install -r requirements.txt

FFmpeg Not Found

Install FFmpeg and verify:

ffmpeg -version

Python Not Found

Install Python 3.10 or newer and ensure it is added to your system PATH during installation.

Clone this wiki locally