Download gallery-dl

Download the latest official release of gallery-dl for Windows, Linux, or install via Python. All files include SHA256 hashes for verification.

🔽 Download Files

🪟 Windows (64-bit)

File: gallery-dl.exe

🪟 Windows (32-bit)

File: gallery-dl_x86.exe

🐧 Linux (Binary)

File: gallery-dl.bin

🐍 Python (Recommended for Developers)

Wheel File:
gallery_dl-1.31.7-py3-none-any.whl

Alternative Source Archive:
gallery_dl-1.31.7.tar.gz

🔐 How to Verify SHA256 (Important)

Verifying your download ensures the file has not been modified.

On Windows:

certutil -hashfile gallery-dl.exe SHA256
 

On Linux / macOS:

sha256sum gallery-dl.bin
 

Compare the output hash with the SHA256 value listed above.

🛠 Installation Guide

Windows

  1. Download the .exe file.

  2. Open Command Prompt.

  3. Navigate to the download folder.

  4. Run:

 
gallery-dl.exe <gallery URL>
 

No installation required.

Linux

  1. Download gallery-dl.bin.

  2. Make it executable:

 
chmod +x gallery-dl.bin
 
  1. Run:

 
 
./gallery-dl.bin <gallery URL>
 

Install via pip

If Python is installed:

 
pip install gallery-dl
 

To upgrade:

 
pip install –upgrade gallery-dl
 

⚙ Configuration Guide

gallery-dl supports advanced configuration through a JSON config file.

Default config locations:

  • Windows: %APPDATA%\gallery-dl\config.json

  • Linux: ~/.config/gallery-dl/config.json

Example basic configuration:

{
“base-directory”: “./downloads/”,
“filename”: “{category}_{id}.{extension}”
}
 

You can configure:

  • Download folders

  • File naming patterns

  • Authentication cookies

  • Metadata extraction

  • Post-processing options

🧰 Troubleshooting Guide

❗ gallery-dl not downloading images

  • Check if URL is supported

  • Update to latest version

  • Verify authentication settings

❗ Authentication Errors

Some platforms require login cookies. Export browser cookies and configure them in your config file.

❗ Permission Denied (Linux)

Run:

chmod +x gallery-dl.bin
 

❗ Command Not Found

Ensure the file path is correct or add gallery-dl to your system PATH.