Install & setup
How to Install yt-dlp on Windows
Install yt-dlp on Windows 10 or 11 in minutes — using winget, Scoop, Chocolatey, or the standalone yt-dlp.exe — plus how to add it to PATH and install ffmpeg.
Updated 2026-06-13
There are two good ways to install yt-dlp on Windows: a package manager (handles PATH and updates automatically) or the standalone executable (no dependencies). Here's both.
Option A — winget (built into Windows 10/11)
winget install yt-dlp.yt-dlpThat's it — winget adds yt-dlp to your PATH, so you can open any terminal and run it. Update later with winget upgrade yt-dlp.yt-dlp.
Option B — Scoop or Chocolatey
scoop install yt-dlp
# or
choco install yt-dlpOption C — the standalone yt-dlp.exe
- Download yt-dlp.exe from the official GitHub releases page (github.com/yt-dlp/yt-dlp/releases/latest).
- Create a folder such as C:\yt-dlp and move yt-dlp.exe into it.
- Add that folder to your PATH (see below) so you can run yt-dlp from anywhere.
Adding a folder to PATH on Windows
- Press Start and search 'Edit the system environment variables'.
- Click 'Environment Variables…', select 'Path' under User variables, click 'Edit'.
- Click 'New', paste C:\yt-dlp, click OK on every dialog.
- Open a NEW terminal window for the change to take effect.
Install ffmpeg too
ffmpeg is required to merge 1080p+/4K video with audio and to convert files. The easiest route on Windows:
winget install Gyan.FFmpegVerify it works
yt-dlp --version
yt-dlp -F https://youtu.be/dQw4w9WgXcQThe first prints the version; the second lists available formats. From here, see how to use yt-dlp on Windows and the full yt-dlp commands reference.