2019-07-15 13:32:00 +00:00
---
layout: page
title: Introduction
---
AdminLTE can be installed using multiple methods. Pick your favorite method from the list below. Please be sure to check the dependencies section before continuing.
2020-06-02 13:57:24 +00:00
2021-01-28 19:09:32 +00:00
### Download from GitHub
2019-07-15 13:32:00 +00:00
2020-05-31 11:11:55 +00:00
Visit the releases section on GitHub and download the [latest release ](https://github.com/ColorlibHQ/AdminLTE/releases ).
2019-07-15 13:32:00 +00:00
2021-01-28 19:09:32 +00:00
### Grab from [jsdelivr](https://github.com/ColorlibHQ/AdminLTE/releases/latest) CDN :
_**Important Note**: You needed to add separately cdn links for plugins in your project._
```html
2021-02-02 07:22:33 +00:00
< script src = "https://cdn.jsdelivr.net/npm/admin-lte@3.1/dist/js/adminlte.min.js" > < / script >
2021-01-28 19:09:32 +00:00
```
```html
2021-02-02 07:22:33 +00:00
< link rel = "stylesheet" href = "https://cdn.jsdelivr.net/npm/admin-lte@3.1/dist/css/adminlte.min.css" >
2021-01-28 19:09:32 +00:00
```
2020-06-02 13:57:24 +00:00
### Command Line
#### Via NPM
2019-07-15 13:32:00 +00:00
```bash
2021-02-02 07:22:33 +00:00
npm install admin-lte@^3.1 --save
2019-07-15 13:32:00 +00:00
```
2020-06-02 13:57:24 +00:00
#### Via Yarn
2019-07-17 21:05:57 +00:00
```bash
2021-02-02 07:22:33 +00:00
yarn add admin-lte@^3.1
2019-07-17 21:05:57 +00:00
```
2020-06-02 13:57:24 +00:00
#### Via Composer
2019-07-15 13:32:00 +00:00
```bash
2021-02-02 07:22:33 +00:00
composer require "almasaeed2010/adminlte=~3.1"
2019-07-15 13:32:00 +00:00
```
2020-06-02 13:57:24 +00:00
#### Via Git
2019-07-15 13:32:00 +00:00
```bash
git clone https://github.com/ColorlibHQ/AdminLTE.git
```