> For the complete documentation index, see [llms.txt](https://script-ware.gitbook.io/cyberdrop-dl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://script-ware.gitbook.io/cyberdrop-dl/getting-started.md).

# Getting Started

## Installing `cyberdrop-dl`

There are two ways to install `cyberdrop-dl`. The first is the easy method, where you simply download the start scripts. The start scripts will automatically install a compatible python version and then install `cyberdrop-dl`.

The second method is installing `cyberdrop-dl` directly from pypi using `uv`, `pipx` or `pip`

For instructions, see:

{% content-ref url="/pages/DeYZAXzugF2vdMgGFulr" %}
[Install cyberdrop-dl](/cyberdrop-dl/getting-started/cyberdrop-dl-install.md)
{% endcontent-ref %}

{% content-ref url="/pages/Vu47rGBBWCQ05RRYSIdC" %}
[Running CDL on Android](/cyberdrop-dl/getting-started/cyberdrop-dl-on-android.md)
{% endcontent-ref %}

## What now?

If you downloaded the start scripts, just open the `run` script with the name of the OS you are using. For a manual install, execute the program with this command:

```shell
cyberdrop-dl
```

On the main screen, you can use the 'Edit URLs' option to add the URLs for the files you wish to download, then go back to the main menu and choose `download` to start. That's it!

However, `cyberdrop-dl` has a ton of configuration options if you want more control over the downloads. You may want to review the following:

{% content-ref url="/pages/gVHNy8u2JIgh68EjOEa6" %}
[Configuration](/cyberdrop-dl/reference/config.md)
{% endcontent-ref %}

{% content-ref url="/pages/3aswEaaqmGsqhp2KIJsC" %}
[CLI Arguments](/cyberdrop-dl/reference/cli-arguments.md)
{% endcontent-ref %}

{% content-ref url="/pages/LpUr1ZFWgvk2MiuiWcBs" %}
[Notifications](/cyberdrop-dl/reference/config/notifications.md)
{% endcontent-ref %}

## AppData and Configuration

`cyberdrop-dl` have 3 files to control its behavior at runtime:

* A config file (YAML)
* A database file (SQLite)
* A cache file (JSON)

Additionally, a dedicated `logs` folder is created to store logs files of a session. On Windows, all files are stored in `%AppData%/cyberdrop-dl`, with the logs folder being `%AppData%/cyberdrop-dl/logs` On Unix systems, `cyberdrop-dl` follows the [XDG Base Directory Specification](https://specifications.freedesktop.org/basedir/0.8/) to store application files.

These are the default locations used on each platform

| Location    | Windows                               | macOS/Linux/Android                                                                        |
| ----------- | ------------------------------------- | ------------------------------------------------------------------------------------------ |
| Config file | `%AppData%/cyberdrop-dl/config.yaml`  | `${XDG_CONFIG_HOME}/cyberdrop-dl/config.yaml` or `~/.config/cyberdrop-dl/config.yaml`      |
| Cache       | `%AppData%/cyberdrop-dl/cache.json`   | `${XDG_CACHE_HOME}/cyberdrop-dl/cache.json` or `~/.cache/cyberdrop-dl/cache.json`          |
| Database    | `%AppData%/cyberdrop-dl/cyberdrop.db` | `${XDG_DATA_HOME}/cyberdrop-dl/cyberdrop.db` or `~/.local/share/cyberdrop-dl/cyberdrop.db` |
| Logs        | `%AppData%/cyberdrop-dl/Logs`         | `${XDG_STATE_HOME}/cyberdrop-dl/logs` or `~/.local/state/cyberdrop-dl/logs`                |

### See also

You may also want to peek at what websites the program actually supports:

{% content-ref url="/pages/8HCH5vxIrEgxhR4BYHNy" %}
[Supported Websites](/cyberdrop-dl/reference/supported-websites.md)
{% endcontent-ref %}

If you have any issues, perhaps the [FAQ](/cyberdrop-dl/frequently-asked-questions.md) might help you!


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://script-ware.gitbook.io/cyberdrop-dl/getting-started.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
