brew install julia LTS

Viewed 33

I accidentally installed Julia 1.8 using brew install julia, and I'd prefer to have julia 1.7 or the LTS. Is there a way to install the LTS using brew, or do I have to do it manually?

1 Answers

Installing the LTS version using: brew install homebrew/cask-versions/julia-lts

% brew search julia
==> Formulae
julia ✔                                                         juliaup                                                         julius

==> Casks
julia                                                           julia-lts ✔                                                     julia-nightly
% julia --version
julia version 1.8.1
% julia-lts --version
julia version 1.6.7

Related