Reputation: 185
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?
Upvotes: 0
Views: 745
Reputation: 14929
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
Upvotes: 3