# Ubuntu Julia 1.6.4, juypter notebook not connecting?

**URL:** https://discourse.julialang.org/t/ubuntu-julia-1-6-4-juypter-notebook-not-connecting/71933
**Category:** Jupyter-Notebook
**Created:** [November 23, 2021, 10:31am UTC](https://discourse.julialang.org/t/ubuntu-julia-1-6-4-juypter-notebook-not-connecting/71933 "2021-11-23T10:31:51Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![jamaas](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jamaas/32/30689_2.png) [@jamaas](https://discourse.julialang.org/u/jamaas)
#### Post date: [November 23, 2021, 10:31am UTC](https://discourse.julialang.org/t/ubuntu-julia-1-6-4-juypter-notebook-not-connecting/71933/1 "2021-11-23T10:31:51Z")

</div>

I’ve just updated to the latest version of julia, 1.6.4 or ubuntu 20.04, however this has been an ongoing problem with previous julia versions. I can not get the julia kernel to show up in jupyter notebooks. Jupyter is installed by the jupyter snap, and within Julia I’ve added and built IJulia but still no luck. When I attempt to execute a notebook from within Julia I get the following error. Any suggestions? Thx. J

```julia
julia> using IJulia; notebook()
[ Info: running `/usr/bin/snap notebook`
Process(setenv(`/usr/bin/snap notebook`; dir="/home/name"), ProcessExited(64))

```

---

<div class="post-metadata">

### Author: ![fredrikekre](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/fredrikekre/32/1688_2.png) [@fredrikekre](https://discourse.julialang.org/u/fredrikekre)
#### Post date: [November 23, 2021, 10:44am UTC](https://discourse.julialang.org/t/ubuntu-julia-1-6-4-juypter-notebook-not-connecting/71933/2 "2021-11-23T10:44:00Z")

</div>

Try to rebuild `IJulia`:

```julia
using Pkg
Pkg.build("IJulia")

```

---

<div class="post-metadata">

### Author: ![jamaas](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jamaas/32/30689_2.png) [@jamaas](https://discourse.julialang.org/u/jamaas)
#### Post date: [November 23, 2021, 10:55am UTC](https://discourse.julialang.org/t/ubuntu-julia-1-6-4-juypter-notebook-not-connecting/71933/3 "2021-11-23T10:55:13Z")

</div>

Thanks fredrikekre, as I said above, already did that, several times and still no luck. Thx. J

---

<div class="post-metadata">

### Author: ![jamaas](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/jamaas/32/30689_2.png) [@jamaas](https://discourse.julialang.org/u/jamaas)
#### Post date: [November 23, 2021, 11:23am UTC](https://discourse.julialang.org/t/ubuntu-julia-1-6-4-juypter-notebook-not-connecting/71933/4 "2021-11-23T11:23:00Z")

</div>

Found the problem, apologies. I was using jupyter which was running from an old “snap”, didn’t realise it is from 2019 so well out of date today (end 2021). I removed the snap, reinstalled jupyter using apt, started julia, added IJulia, build IJulia then executed

```nohighlight
using IJulia; notebook ()

```

and it started a new jupyter notebook, and the new Julia 1.6.4 kernel was available!
