cardoza2
cardoza2

Reputation: 185

brew install julia LTS

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

Answers (1)

Luuk
Luuk

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

Related Questions