> For the complete documentation index, see [llms.txt](https://docs.umbraco.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.umbraco.com/umbraco-ui-builder/getting-started/installation.md).

# Installing Umbraco UI Builder

In this article, you will learn how to install Umbraco UI Builder into your Umbraco CMS implementation.

## Install via Command Line

Run the following command in your web project:

```sh
dotnet add package Umbraco.UIBuilder
```

For a class library without UI elements, install:

```sh
dotnet add package Umbraco.UIBuilder.Startup
```

## Install via Visual Studio

To install via Visual Studio, follow these steps:

1. Open Visual Studio and load your project.
2. Go to **Tools** -> **NuGet Package Manager** -> **Manage NuGet Packages for Solution...**
3. Select the **Browse** tab and search for **Umbraco.UIBuilder**.

![Installing Umbraco UI Builder via Visual Studio](/files/KwBSvnulUuNlozrBWHst)

4. Select a version from the **Version** drop-down based on the Umbraco CMS version you are using.
5. Click **Install**.
6. *\[Optional]* Search for and install **Umbraco.UIBuilder.Startup** if installing without UI elements.
7. Ensure that the package reference is added to the **.csproj** file once the installation is complete:

```cs
<ItemGroup>
<PackageReference Include="Umbraco.UIBuilder" Version="15.0.2" />
</ItemGroup>
```

## Installing a License

For details on how to install a license, see the [Licensing](/umbraco-ui-builder/getting-started/licensing-model.md#installing-your-license) article.


---

# 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://docs.umbraco.com/umbraco-ui-builder/getting-started/installation.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.
