Issue
According to a documentation it is possible to install Allure CLI with sudo apt-get install allure-commandline
command.
But only Trusty and Precise distributions are supported, hence I can not install it on my Ubuntu 15.10 system.
sudo apt-add-repository ppa:yandex-qatools/allure-framework
sudo apt-get update
sudo apt-get install allure-commandline
Result:
E: Unable to locate package allure-commandline
Is there another way to install Allure CLI package on Ubuntu 15.10?
Solution
To install Allure you need to do the following steps:
- Download the latest version as zip archive from https://github.com/allure-framework/allure-core/releases/latest.
- Unpack the archive to allure-commandline directory.
- Navigate to bin directory.
- Use allure script to run commandline.
So you can also add unpacked directory to the PATH and then use allure
command as well.
Answered By - Dmitry Baev