Cyberdrop-DL Install
Using Start Scripts (From Release Page)
This is the simplest method to get the program up and running. Pre-configured start files are provided that will automatically install python, install cyberdrop-dl, update, and launch the program for you.
You can download them here: https://github.com/jbsparrow/CyberDropDownloader/releases/latest
You only need to download the Cyberdrop-DL_<version>.zip
file, you don't need to worry about the other files.
Extract the contents of the zip file to any location where you'd like the program to run and store downloaded files. The extracted files will include a start file for Windows, macOS, and Linux
If you're using Windows or Linux, simply open the start file, and it will handle the rest for you
On macOS, you should be able to open the start file and have everything set up automatically. However, in some rare cases, macOS users may need to run the following command first::
xcode-select --install
Manual Install
1. Using uv
uv
The recommended way to install Cyberdrop-DL is using uv
.
curl -LsSf https://astral.sh/uv/install.sh | sh
Once you have uv
, you can install Cyberdrop-DL using:
uv tool install cyberdrop-dl-patched
2. Manual Python Install
If you do not want to or can't use uv
, you will need to install a compatible python version manually.
If you don't have python, you can find and download it from their official website: https://www.python.org/downloads/
If you are using a version of Cyberdrop-DL from the previous repository (cyberdrop-dl
instead of cyberdrop-dl-patched
), you MUST uninstall it before installing the patched version.
pip uninstall cyberdrop-dl
Once you have python, you can install Cyberdrop-DL directly from pypi using pipx
or pip
. In a command prompt/terminal window:
Install
pipx
(if you don't have it already)
pip install pipx
Install cdl
pipx install cyberdrop-dl-patched
Last updated