# Handling multiple versions of julia in jupyter

**URL:** https://discourse.julialang.org/t/handling-multiple-versions-of-julia-in-jupyter/18423
**Category:** Tooling
**Tags:** jupyter
**Created:** [December 7, 2018, 3:27pm UTC](https://discourse.julialang.org/t/handling-multiple-versions-of-julia-in-jupyter/18423 "2018-12-07T15:27:14Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![matthew-wingate](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/matthew-wingate/32/28472_2.png) [@matthew-wingate](https://discourse.julialang.org/u/matthew-wingate)
#### Post date: [December 7, 2018, 3:27pm UTC](https://discourse.julialang.org/t/handling-multiple-versions-of-julia-in-jupyter/18423/1 "2018-12-07T15:27:14Z")

</div>

Hi. I’m using anaconda to manage my python and jupyter installations. Awhile ago I installed julia v0.6 manually and got it working with jupyter. Now I’ve found that I can use conda (conda-forge) to manage julia. However, I can’t figure out how to get jupyter to find the new installation of julia (v1.0). Ideally, I’d also like to install v0.7 so that I can try code with different kernels.

I’ve gotten a bit confused from online documentation, where the recommended steps seem to be 1) install julia THEN 2) install jupyter. I’d really rather just learn how to switch between julia versions from within my existing python/jupyter installations.

Thanks for any advice!

---

<div class="post-metadata">

### Author: ![matthew-wingate](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/matthew-wingate/32/28472_2.png) [@matthew-wingate](https://discourse.julialang.org/u/matthew-wingate)
#### Post date: [December 7, 2018, 3:49pm UTC](https://discourse.julialang.org/t/handling-multiple-versions-of-julia-in-jupyter/18423/2 "2018-12-07T15:49:41Z")

</div>

Ah, I think I’ve got it now. All I needed to do was to run the newly installed version of julia from the command line and at the prompt:

```julia
julia> Pkg.add("IJulia")

```

jupyter found it the next time I ran it.
