Julia programming ----------------- Fedora Scientific includes the `Julia language `__. The `official documentation `__ is a good place to start looking into Julia. There are a number of other resources listed on the `learning page `__. The `community `__ page lists the various mailing lists. Julia development in Jupyter ============================ Using `IJulia.jl `__, you can program in Julia in `Jupyter notebooks `__. Here is how you can install IJulia: .. code:: $ julia > Pkg.add("IJulia") Once that completes, run the following: .. code:: $ julia > using IJulia > notebook() In addition, if you are curious, you can look into using `Juno `__ for Julia programming.