---
title: Upgrade Allure Report 3
description: Step-by-step instructions for upgrading Allure Report 3 to the latest version, for all supported installation methods.
---

# Upgrade Allure Report

We recommend to use the latest version of the Allure Report command-line utility.

To upgrade your Allure Report installation to the newest version, follow the instructions below. Select the same method you used when installing the previous version.

Tip:
**Which version do I have now?**

To find out the current installed version of Allure Report, open the terminal and run `allure --version`. If it displays the same version number as the latest Allure Report release, you do not need to upgrade for now.

We also recommend running this command after an upgrade to make sure it was successful.

## Upgrade from a Node.js package

[![Allure Report 3 npm latest version](https://img.shields.io/npm/v/allure?style=flat "Allure Report 3 npm latest version")](https://www.npmjs.com/package/allure)

If you installed Allure Report [from a Node.js package](/docs/v3/install/) for your project, upgrade it via `npm`.

**Global installation:**
```
npm update -g allure
```

**Project-specific installation:**
```
npm update allure
```

