Install Allure Report for Linux
Allure Report can be installed on Linux from a Homebrew or DEB package or manually from an archive.
Install from Homebrew
Make sure Homebrew is installed.
In a terminal, run this command:
brew install allure
Run this command to see if it reports the latest version:
allure --version
Install from a DEB package
Make sure that your Linux distribution supports installing software from DEB packages.
Go to the latest Allure Report release on GitHub and download the
allure-*.deb
file.In a terminal, go to the directory with the file and install it. For example:
sudo dpkg -i allure_2.29.0-1_all.deb
Run this command to see if it reports the latest version:
allure --version
Install from an archive
Make sure Java version 8 or above installed, and its directory is specified in the
JAVA_HOME
environment variable.Go to the latest Allure Report release on GitHub and download the
allure-*.zip
orallure-*.tgz
archive.Uncompress the archive into an installation directory of your choice. For example:
tar xf /home/user/Downloads/allure-2.29.0.tgz -C /home/user/tools
Make sure Allure is in your
PATH
, so you can invoke it from the command line by just typingallure
.There are various ways to do so, for example, via the
update-alternatives
utility or by modifying thePATH
variable.Run this command to see if it reports the latest version:
allure --version