Skip to content

Installing & Running

If you are familiar with setting up a Python environment, then run the following command in your terminal:

pip install dyad

Once, you have installed Dyad, you can run it in your current directory:

dyad .

This will launch the Dyad app in your default browser. Follow the in-app instructions or read the quickstart guide:

Quickstart

Python environment

If you're not familiar with setting up a Python environment, we recommend you to use uv to install Dyad. uv is like a modern version of pip but faster and easier to use.

Install uv by following their installation guide.

Once, you have installed it, you can do:

uv pip install dyad

And then you can run Dyad from the CLI like this: dyad ..

Doesn't work?

If that doesn't work (e.g. you're running into a dependency issue), run this:

uvx dyad .

This download Dyad and run it in one command. See uv tool docs for more details.

Upgrading

To upgrade Dyad, run the following command:

pip install --upgrade dyad

Next steps

Follow the quickstart guide to learn how to use Dyad:

Quickstart