> ## Documentation Index
> Fetch the complete documentation index at: https://docs.langbot.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Manual Deployment

## Installing the Main Program

1. Go to the [Release](https://github.com/langbot-app/LangBot/releases) page to download the latest version of the zip package (recommended) `langbot-xxx-all.zip` (do not download Source Code as it does not include WebUI). Extract it and open a command line (terminal) in the extracted directory.

<img src="https://mintcdn.com/langbot/ccEfWQOd_I5kaF_t/images/zh/deploy/langbot/manual/dl_release.png?fit=max&auto=format&n=ccEfWQOd_I5kaF_t&q=85&s=8f42ade6509cdd671ce38a4ea7d90be9" alt="Download Release" width="1712" height="1094" data-path="images/zh/deploy/langbot/manual/dl_release.png" />

2. Install dependencies

We use [uv](https://docs.astral.sh/uv/) to manage dependencies.

```bash theme={null}
pip install uv
uv sync
```

3. Run the main program once to generate configuration files

```bash theme={null}
uv run main.py
```

You will see the following message:

```
 _                   ___      _   
| |   __ _ _ _  __ _| _ ) ___| |_ 
| |__/ _` | ' \/ _` | _ \/ _ \  _|
|____\__,_|_||_\__, |___/\___/\__|
               |___/              

⭐️Open Source: https://github.com/langbot-app/LangBot
📖Documentation: https://docs.langbot.app

The following files do not exist and have been automatically generated. Please modify the configuration files as needed and restart:
- data/config.yaml
...
```

You can now use Ctrl+C to exit the program and continue to the [Deploy Bots](/en/deploy/platforms/readme) page.
