Skip to content

Commit

Permalink
Julia coming up in Fedora 24
Browse files Browse the repository at this point in the history
  • Loading branch information
amitsaha committed Mar 9, 2016
1 parent 9a9fa62 commit d3e4862
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions guide/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Contents
python_programming
R_programming
java_programming
julia_programming
latex
graphs_draw
versioncontrol
Expand Down
35 changes: 35 additions & 0 deletions guide/julia_programming.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Julia programming
-----------------

Fedora Scientific includes the `Julia language
<http://julialang.org>`__. The `official documentation
<http://docs.julialang.org/en/release-0.4/>`__ is a good place to
start looking into Julia. There are a number of other resources listed
on the `learning page <http://julialang.org/learning/>`__.

The `community <http://julialang.org/community/>`__ page lists the
various mailing lists.


Julia development in Jupyter
============================

Using `IJulia.jl <https://github.com/JuliaLang/IJulia.jl>`__, you can
program in Julia in `Jupyter notebooks <http://jupyter.org/>`__. 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
<http://junolab.org/>`__ for Julia programming.

0 comments on commit d3e4862

Please sign in to comment.