Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Julia 1.6.2 not appearing in Jupyter notebook

I have installed julia 1.6.2 , jupyter notebook and anaconda 3 according to this website:

https://datatofish.com/add-julia-to-jupyter/

I have also checked other websites and the steps of installation were similar. However, I have a problem in step 5 of the above link, as Julia 1.0 doesn't appear and only Python appears. ( Text File, Folder, and Terminal also appear in the Others section )

Any ideas on what the problem is? I have also set the environment variable of Julia by going to System Variables and adding the bin folder of julia to Path. ( Windows 10 OS)

Also, after installing Julia, these were the lines I entered to install other things.

import Pkg
# installs IJulia package
Pkg.add("IJulia")
using IJulia
# launch Jupyter notebook
notebook()

After these, I opened julia again and typed:

import Pkg
Pkg.add("NBInclude")
like image 845
NaturalQuestioner Avatar asked Nov 19 '25 01:11

NaturalQuestioner


1 Answers

I had this issue also. To solve it, you just need to rebuild your IJulia kernel by running command below on Julia apps:

Using Pkg
Pkg.add("IJulia")
Pkg.build("IJulia")
like image 68
zonna Avatar answered Nov 21 '25 09:11

zonna



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!