- Why Julia?: Julia gets as close to writing whiteboard mathematics directly in code as any language has yet to achieved. Moreover, the code has the possibility to be almost as as fast (or faster in the longrun) than typical code using compiled lanugages like Fortran or C/C++.
- Why not Python?: Python is a general-purpose language, and very useful for things like screen-scraping, manipulating data files, gluing together code, cookbook datascience, etc. But it is not ideal for implementing mathematical models and scientific computing, and incapable of high-performance by its very design. The development environment is much more mature than Julia, but in 2+ years that will likely not be true. On the other hand, Python may remain a better language for cookie-cutter datascience and machine learning tasks in the near future.
- Is Julia Ready? The language: Yes. The environment: Almost. The general "development environment" of Julia is rough around the edges, but will get better. If you are thinking a few years into the future, then now is the time to invest in learning the language (even if it is sometimes painful). The current version of Julia (0.6) is the last prior to a stabilization of the language. But for the most part, learning Julia 0.6 is not time wasted (even if some code will require conversion when 0.7/1.0 is released).
- Will it succeed? It is too good to fail! The community is large enough, and the packages available are dense enough, to support users until it is fully ready.
- It feels slow!: Yes, the environment does. Many tasks run slowly the first time you execute them. Keep in mind that Julia is often closer to a compiled language (like Fortran and C++) than a dynamic language (like Matlab or Python). But there is hope! The perceived speed usually has to do with either (1) the package management system; or (2) code needs to be compiled the first time you use it. The package management is being replaced, which should help, and the timing of when compilation happens should get better. Until then: luckily, once the compiling has happened it should feel lightning fast.
You can: (1) run as Jupyter notebooks on a web server; (2) install and use Jupyter on a desktop; (3) or use julia files directly on the desktop with an IDE or a REPL.
Unlike working with files directly, a Jupyter notebook contains both code and results. To see some of the key features, look at https://lectures.quantecon.org/jl/getting_started.html#notebook-basics
For more details on accessing tutorials, see Julia Tutorials
JuliaBox is the easiest method to get started using Julia, as it requires no installation
- Login with a github account (which will make it easy to connect to github)
- The most important rule is: never install packages directly on JuliaBox
- i.e. don't use
Pkg.add()
on https://next.juliabox.com/ notebooks - Instead, form the main page, click on
Packages
at the top, chooseYours
, then add to the dialog that saysEnter the package...
. After installing packages, hitStart
to rebuild.
- From JuliaBox, a great place to start are the pre-installed tutorial files. You can walk through them with a Youtube Tutorial
One option is JuliaPro as an easy way to get started and play around with Juila. However, the issue with JuliaPro is that you are basically unable to update your packages, so ultimately you may want to install Julia separately.
Alternatively, to install Julia separately you can follow First Steps. Alternatively, for the impatient the summary of links to download and install is:
- Anaconda
- May not be necessary if you already have a complete installation of Python and its package managers
- Choose the Anaconda with Python 3.6
- Install Julia
- Optional, but Recommended: VS Code as an editor, with installation/setup notes in VS Code Notes
- Optional, but Recommended Consider running the following setup to download and precompile some useful packages
- Either download setup.jl or clone this repository
- Start up a Julia console, use
;
to get a shell andcd
into the location of that file - Then execute the following, and go to lunch
include("setup.jl")
- You might get build errors on the
Pkg.update()
setup with the IJulia installation. If so, rerun the setup script, and it may ask you to runPkg.build("IJulia")
- To Install Jupyter
- If you run the
include("setup.jl")
it will install it for you - Otherwise, you will need to go to a Julia consol and type
Pkg.add("IJulia")
- After installation, you can run jupyter with
jupyter notebook
or to use the latest interface (which is a major step forward)jupyter lab
- Depending on how you installed Anaconda, this may require adding a directory to the PATH. The location depends on the installation location, but it will be something like
/bin/Anaconda3/Scripts
- If you run the
- To change Jupyter start-up directory
-
For Windows: if Anaconda was installed in C:/bin, then created a shortcut with
- Target =
C:\bin\Anaconda3\Scripts\jupyter.exe notebook
- Or to use Jupyter Lab,
Target = C:\bin\Anaconda3\Scripts\jupyter.exe lab
- Next, to have it start in a particular folder, change the "Start In" to =
c:\working
or wherever you want.
- Target =
-
For OS X: you have to launch Jupyter from the directory that you want to work in. One way to do this is
- Type
terminal
to launch the OS X Terminal - Next, to have it start in a particular folder, enter the command:
cd/folder_name
- After that, type
jupyter notebook
to launch Jupyter - If you don't want to enter the command
cd/folder_name
each time, you could set up a bash alias command. See this tutorial.
- Type
-
It is much easier to edit sourcecode in an editor with Revise.jl.
- First install with
Pkg.add("Revise")
- Find the
.
files are for your account. For example, it is usually atcd ~
on linux/osx/windows with bash, or in a directory such asC:\Users\jlperla
- Copy .juliarc.jl to that directory
- Optional, with Atom (but not VS Code): for Juno/Atom, you need to use the master of Revise. To do this,
Pkg.add("Revise")
Pkg.checkout("Revise", "v0.6")
Another package is
REPL, but it doesn't work well with VS Code. It can always be manually added in a particular REPL session with using OhMyREPL
.
NOTE: At this point, VS Code is a much higher performance editor, even if it has fewer Julia specific features.
A text editor for .jl
files that has a built-in REPL to run code, etc. It is the closest to a matlab style IDE, but the debugger is still in progress. Juno is built on Atom and has a reputation for being a little slow as an editor, although it is making progress.
- In Install Atom
- o to Settings (
ctrl-,
, orcmd-,
on OS X) and go to the "Install" panel. - Type
uber-juno
into the search box and hit enter. Click the install button on the package of the same name. - You then typically need to point Juno at the julia executable. To do this, go to the settings page with
ctrl-,
and go to thejulia-client
package - Make sure you know the locaion of the Julia executable. You can find this in the REPL with the function
JULIA_HOME
.e.g./bin/Julia-0.6.2/bin/julia.exe
On windows, better to avoid backslashes - There you will see a place to put the Julia executable. Put the full file to it,
- After, you can test out a Julia consol by choosing
shift-ctrl-p
(orshift-cmd-p
on OS X) and then typingJulia
to see all of the options. - For more on atom, see Atom Tutorial
For some notes,
- See Installation
- See Usage Guide
- After installation, start Juno and create a new
.jl
file, or open theexample.jl
in this repository - To run a line of code in the editor, use
shift-enter
- To run the entire file, you can use the tools on the left hand bar, or
shift-control-enter
- You will quickly feel one of the major current issues with Julia environment right now: (time required to plot the first time, which they are working on).