ufechner@framework:~/.julia$ which julia
/home/ufechner/.juliaup/bin/julia
In other words the launcher is installed in the folder .juliaup/bin which is in my home folder. It will be similar on a Mac. Julia itself is installed in the folder
Cloning the Julia git repo gives you the source code and you have to build Julia yourself. Certainly doable (and not actually difficult at all) but not worth the trouble unless you want to participate in Julia development or get an early preview of features in an upcoming release.
Using the Linux distribution’s package manager is generally not recommended. There have been many reports of strange problems that have turned out to be caused by less than successful packaging.
I just download the tar.gz file (for instance, julia-1.10.0-linux-x86_64.tar.gz) and expand into an arbitrary folder. Then, when I’m feeling frisky, I add a symlink to the executable.
Yes I also did that in the past . I am just trying to understand how juliaup works and where does it takes place. As it is now the recommended way to do.