---
sidebar_position: 6
title: Blazorise DataGrid
---
## Install Blazorise DataGrid
Select your project, then right click and choose `Manage NuGet Packages...`:

Select the `Browse` tab and search for `blazorise datagrid`:

Select the package then right click on `Install`:

:::tip
It's normal that the version you install is different, Blazorise nugets evolve, always use the latest version.
:::
Accept changes by clicking `OK`:

Blazorise Datagrid is now installed on your project.
Do the same for the `Blazorise.Bootstrap` & `Blazorise.Icons.FontAwesome` package.
It is also possible to install packages directly with the `Package Manager Console` window (Click in the `View => Other Windows => Package Manager Console` menu to display it).
To install, just use the `Install-Package` command, example:
```shell
Install-Package Blazorise.Bootstrap
Install-Package Blazorise.Icons.FontAwesome
```
## Register Blasorize in the app
Open the `Program.cs` file and add the highlighted changes:
```csharp title="Program.cs"
...
builder.Services.AddHttpClient();
// highlight-start
builder.Services
.AddBlazorise()
.AddBootstrapProviders()
.AddFontAwesomeIcons();
// highlight-end
var app = builder.Build();
...
```
## Add Blazorise Sources
Open the `Pages/_Layout.cshtml` file and add the highlighted changes:
```cshtml title="Pages/_Layout.cshtml"
...
// highlight-start
// highlight-end