Skip to Main Content
UC Logo
Libraries | Ask the Libraries

Julia (programming language)

Brief History of Julia Programming. Market Demand, library base and future of Julia. Basics programming constructs with Julia. Write your first Julia program.

Introduction

What is Julia?

Julia is a high-level,  just-in-time (JIT) compiled, dynamic programming language, designed to give users the speed of C/C++ while remaining as easy to use as Python. Developed at MIT by  Dr. Viral Shah, Prof. Alan Edelman, Dr. Jeff Bezanson and Stefan Karpinski. in 2012.

How is Julia different from other languages?

Julia is relatively new language as compared to well established python, C++, JavaScript etc. This lets Julia developers use the best from all the existing languages and at the same time drop some inconvenient features. Julia has the speed of compiled language like C/C++ and a syntax as simple as interpreted language like Python. This is possible because Julia uses JIT (Just In Time) compiler, a combination of AOT (Ahead Of Time) compilation and interpretation. It also support REPL (Read-Eval-Print loop), where code lines are interpreted at the same time they are written making it convenient for programmers. Julia is fairly compatible with other languages such as C/C++, Java, Python using foreign functions.

Please visit compiler, interpreter, JIT, AOT and REPL for more information.

Why is it used?

Julia's faster LLVM (low level virtual machine) based JIT compilation and better memory management makes it faster and efficient for numerical computation suitable for data science and machine learning applications. Julia is versatile and is designed with technical and scientific users in mind and provides easy interoperability with other programming languages like C/C++ and Python. It works on any operating system like Windows, mac, Unix, etc. The Julia user base and popularity is growing fast due to its appealing features.

Where is it used?

Due to its math friendly syntax and fast speed, Julia has become first choice for 

  • Algebraic and Numerical Computing
  • Data Science and Machine Learning
  • Artificial Intelligence 
  • Distributed and Parallel Computing
  • Web application development

Please visit JuliaLang for more information.

Getting Started

Julia uses an JIT compiler to execute the code. The JIT compiler generates byte code for the interpreter just when it is required rather than generating complete byte code for whole program.  This strategy provide much required speedup as compared to purely interpreted programming languages and reduce startup time as compared to pure compiled languages. Julia programming code can be written in multiple ways. Some them are listed below:

Stand-alone Julia Installation

Julia is supported on all the major operating systems. Click the following links to download the latest release for the respective operating systems. 

  • Windows 
    •  For more help on installation, visit this page.
  • macOS
    • For more help on installation, visit this page.
  • Linux/Unix
    • For more help on installation, visit this page

A text editor is used to write the long Julia scripts with multiple functions and save them (with a .jl extension) for future use. The list of all available text editors for Julia can be found here.

Visual Studio Code

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and open source IDE with extension based support for most languages.

  • Download and install Visual Studio Code distribution from here.
  • Please visit page for more information on how to add  Julia extension to VS code.
Jupyter Notebook Installation using 'pip'

Jupyter Notebook is a web-based tool to run live code including Python. Install Python before installing the stand-alone Jupyter Notebook. After the Python's installation, type one of the following commands in the command terminal.

  • 'pip install jupyter notebook' or 'pip3 install jupyter notebook'

'pip' is the keyword that is used to install missing libraries/packages in Python. Please visit this page to know more about 'pip'.

Note: Make sure the PATH variable is set properly before installing any Python related package. Click the following links to learn how to set the PATH variable in the respective operating systems.

    1. Right-click 'This PC' and go to 'Properties'.
    2. Click the 'Advanced system settings' on the right under 'Related settings'.
    3. Click the 'Environment Variables' button present at the bottom.
    4. In the 'System variables' section, select the 'Path variable' and click 'Edit'. This will display all the directories that are currently a part of the PATH variable.
    5. Click 'New' and enter Python’s install directory (Installation directory can be found at C:\Users\Username\AppData\Local\Programs\Python\Python310).
    1. 'csh' shell − type setenv PATH "$PATH:/usr/local/bin/python" and press Enter.
    2. 'bash' shell (Linux) − type export PATH="$PATH:/usr/local/bin/python" and press Enter.
    3. 'sh' or 'ksh' shell − type PATH="$PATH:/usr/local/bin/python" and press Enter.
    • (Installation directory can be found at /usr/local/bin/python)

Add Julia to Jupyter notebooks.

University of Cincinnati Libraries

PO Box 210033 Cincinnati, Ohio 45221-0033

Phone: 513-556-1424

Contact Us | Staff Directory

University of Cincinnati

Alerts | Clery and HEOA Notice | Notice of Non-Discrimination | eAccessibility Concern | Privacy Statement | Copyright Information

© 2021 University of Cincinnati