quarto command not found after installing via yay -S quarto-cli on Manjaro #12885
Unanswered
grimmjulian
asked this question in
Q&A
Replies: 2 comments 2 replies
-
Converting to a discussion as Quarto is not maintaining nor providing the packaged Quarto CLI from AUR. |
Beta Was this translation helpful? Give feedback.
2 replies
-
I cannot reproduce any issues when installing Quarto, so the issue is not from Quarto CLI. FROM manjarolinux/base:latest
RUN QUARTO_VERSION=1.7.31 && \
curl -LO -k "https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" && \
tar -C /opt -xvzf "quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" && \
ln -s "/opt/quarto-${QUARTO_VERSION}/bin/quarto" /usr/local/bin/quarto && \
rm -rf "quarto-${QUARTO_VERSION}-linux-amd64.tar.gz" docker buildx build --platform linux/amd64 -t manjaro-quarto .
docker container run --rm -it --platform linux/amd64 manjaro-quarto quarto --version |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have:
Bug description
Hi Quarto team,
I'm trying to install Quarto on my Manjaro Linux system using the AUR package quarto-cli, but the installation hangs with no prompt or progress.
Steps to reproduce
I tried to install quarto-cli, but the command is not found afterwards:
as well as:
Actual behavior
No response
Expected behavior
No response
Your environment
Quarto Version that is trying to get installed: 1.6.42-1 and 1.7.31 for manual install.
Yay v12.5.0
Quarto check output
quarto check #bash: quarto: command not found
Beta Was this translation helpful? Give feedback.
All reactions