-
-
Notifications
You must be signed in to change notification settings - Fork 711
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ubuntu 18.04 (bionic) installer does not seem to work #989
Comments
Hi all. I have same issue on my Ubuntu 18.04.3 LTS. In order to install I did as following:
As far as I understand allure should be in the PATH. However, I have no idea how to do it. Can someone please help me? Thanks |
Seems like there's a problem with the repository (still) which stops it from getting added to your linux apt-get list. I fixed this by using brew. You install brew, follow all the instructions and then install allure through that. You have to manually copy the allure sh to your bin folder at the end and it works. |
I have the same issue #1114 |
|
Ubuntu bionic has another package called allure that is getting installed instead. See the Ubuntu package search here: https://packages.ubuntu.com/bionic/allure. What's strange is after running the following commands:
I still only see Ubuntu's allure:
Since Ubuntu is such a popular distribution, then at the very least there should be a change to the allure documentation about how to install properly for Ubuntu once we figure out how to do that. |
That's worked for me <3 |
I wrote one for Dockerfile. Install RUN ALLURE_VERSION=2.13.9 \
&& wget -qO /tmp/allure-"$ALLURE_VERSION".tgz https://github.com/allure-framework/allure2/releases/download/"$ALLURE_VERSION"/allure-"$ALLURE_VERSION".tgz \
&& tar -xf /tmp/allure-"$ALLURE_VERSION".tgz --directory=/opt/ \
&& ln -s /opt/allure-"$ALLURE_VERSION"/bin/allure /usr/bin/allure \
&& allure --version |
Having a proper debian package would make the installation mentioned above much more robust and roll backs possible. Indeed, each of the steps mentioned can fail and leave the system in a broken/undertermined way |
deb file installs on Ubuntu 20 focal, see this issue for the link: |
new download link: |
When trying to install
allure
on Ubuntu 18.04, following https://docs.qameta.io/allure/#_linux, everything goes well. However when executingallure --version
afterwards, the following error is occurring:The same on Ubuntu 16.04 seems to work fine.
Expected behavior
allure
should be put in thePATH
at installation and behaviour should be the same for 18.04 and 16.04.Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: