▶️ Watch the video (01:02)
Pain
Users do not have clear, single-command instructions to install Python (required by the video downloader) on macOS and Windows. This increases friction for users who want to use the video downloader quickly.
Suggested Documentation
Add a new README section titled "Install Python for video downloader (Mac & Windows)" that provides simple, single-line CLI commands for macOS and Windows, verification steps, and instructions to install the video downloader (yt-dlp).
Tasks
Acceptance Criteria
More Information
Recommended commands to include (examples):
macOS (single-line that installs Homebrew if needed, then Python):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && brew install python
macOS (if Homebrew already installed):
brew install python
Windows (single-line PowerShell to install Chocolatey and Python):
powershell -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')); choco install python -y"
Verify installation:
python --version
pip --version
Install video downloader (yt-dlp):
python -m pip install -U yt-dlp
Screenshots
Thanks!
Pain
Users do not have clear, single-command instructions to install Python (required by the video downloader) on macOS and Windows. This increases friction for users who want to use the video downloader quickly.
Suggested Documentation
Add a new README section titled "Install Python for video downloader (Mac & Windows)" that provides simple, single-line CLI commands for macOS and Windows, verification steps, and instructions to install the video downloader (yt-dlp).
Tasks
Acceptance Criteria
More Information
Recommended commands to include (examples):
macOS (single-line that installs Homebrew if needed, then Python):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && brew install python
macOS (if Homebrew already installed):
brew install python
Windows (single-line PowerShell to install Chocolatey and Python):
powershell -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')); choco install python -y"
Verify installation:
python --version
pip --version
Install video downloader (yt-dlp):
python -m pip install -U yt-dlp
Screenshots
Thanks!