Hello all,
I have quarto's development version installed on my Ubuntu 22.04 system. I used the instructions provided here to install it.
git clone https://github.com/quarto-dev/quarto-cli
cd quarto-cli
./configure.sh
The version number is: 99.9.9
, which I guess is the default for the dev version.
$ quarto --version
99.9.9
Now I want to use the latest version which is 1.2.475
as of today. I download the .deb
file from the quarto website and installed it. The issue is that the system seems to only recognize the dev version because quarto --version
still returns 99.9.9
.
So my question is: how do I completely remove the dev version from my system so I can use the official release? Thank you.