> For the complete documentation index, see [llms.txt](https://docs.uibakery.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.uibakery.io/on-premise/additional-configurations/adding-python-backend-code-to-existing-installation.md).

# Adding python backend code to existing installation

{% hint style="warning" %}
Python backend code has been available since version 3.36.5 (released on June 26, 2023). If you have installed your instance after that release, Python is already included in your setup, and you can skip this tutorial.
{% endhint %}

## **Docker compose**

If you are using docker compose to run UI Bakery, you will need to add the following container to your `docker-compose.yaml` file:

```
  python-runtime:
    container_name: python-runtime
    image: cruibakeryonprem.azurecr.io/cloud/python-runtime:latest
    restart: always
    env_file: .env
```

## **Kubernetes**

To add the Python executor to an existing cluster, you can copy a new deployment from our [repository](https://github.com/uibakery/self-hosted/blob/main/kubernetes/ui-bakery-python-runtime.yaml).


---

# 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:

```
GET https://docs.uibakery.io/on-premise/additional-configurations/adding-python-backend-code-to-existing-installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
