How can I remove the previous version from Jupyter?

I have two versions of Julia in my Jupyter. See the following picture. Drop-down list of programming languages

Julia 0.5.0 does not work as it displays a "kernel error". I want to remove it from the Programming Language dropdown. Can anyone tell me how to remove it? Thank you for your help.

+3


source to share


1 answer


Run jupyter kernelspec list

on command line to get the paths of all your kernels



Delete the folder corresponding to the kernel you want to remove (in this case, the older version of Julia).

+3


source







All Articles