# Upgrade to Julia 1.7 in Linux

**URL:** https://discourse.julialang.org/t/upgrade-to-julia-1-7-in-linux/72358
**Category:** New to Julia
**Tags:** question
**Created:** [December 1, 2021, 10:49am UTC](https://discourse.julialang.org/t/upgrade-to-julia-1-7-in-linux/72358 "2021-12-01T10:49:31Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Luigi\_Marongiu](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/luigi_marongiu/32/7909_2.png) [@Luigi\_Marongiu](https://discourse.julialang.org/u/Luigi_Marongiu)
#### Post date: [December 1, 2021, 10:49am UTC](https://discourse.julialang.org/t/upgrade-to-julia-1-7-in-linux/72358/1 "2021-12-01T10:49:31Z")

</div>

Hello,  
this is probably a redundant question, but what is the easiest and more comprehensive way to upgrade Julia in Linux?  
I say ‘easiest’ because the way I was doing was to literally change the folder where I store Julia with the new version, meaning then I need to re-install all the packages I was using. I say ‘comprehensive’ because I am using Julia via Juno/Atom, and after having upgraded Julia, I need to re-upgrade Juno independently.  
What is the correct way to upgrade everything at once?  
Thanks

---

<div class="post-metadata">

### Author: ![nilshg](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nilshg/32/2283_2.png) [@nilshg](https://discourse.julialang.org/u/nilshg)
#### Post date: [December 1, 2021, 11:03am UTC](https://discourse.julialang.org/t/upgrade-to-julia-1-7-in-linux/72358/2 "2021-12-01T11:03:01Z")

</div>

You could try [GitHub - johnnychen94/jill.py: A cross-platform installer for the Julia programming language](https://github.com/johnnychen94/jill.py)

Alternatively just manually unzip the latest Julia version somewhere, and change the location that `julia` points to if it’s on your path. By default Juno just uses whatever `julia` points to so you don’t need to do anything there.

As for installed packages these should be in project-specific environments anyway, so you can just `instantiate` those from 1.7. The base environment can just be copied over by duplicating your `.../.julia/environments/1.6` folder and renaming it `1.7`.

---

<div class="post-metadata">

### Author: ![nilshg](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nilshg/32/2283_2.png) [@nilshg](https://discourse.julialang.org/u/nilshg)
#### Post date: [December 1, 2021, 11:06am UTC](https://discourse.julialang.org/t/upgrade-to-julia-1-7-in-linux/72358/3 "2021-12-01T11:06:46Z")

</div>

Actually another one here:

[https://github.com/abelsiqueira/jill](https://github.com/abelsiqueira/jill)

---

<div class="post-metadata">

### Author: ![nilshg](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nilshg/32/2283_2.png) [@nilshg](https://discourse.julialang.org/u/nilshg)
#### Post date: [December 6, 2022, 9:52am UTC](https://discourse.julialang.org/t/upgrade-to-julia-1-7-in-linux/72358/4 "2022-12-06T09:52:23Z")

</div>

Seeing how popular those two links are I suspect this topic is getting reasonable amounts of Google traffic - I should therefore add that there’s also [`juliaup`](https://github.com/JuliaLang/juliaup) which was initially a Windows solution but is being lined up to become the recommended way to install and update Julia on other platforms as well.
