Julia Kernel Guide

See also: Assignment Creation and Notebook‑Based Assignments.

Create a basic Julia assignment

Tip

Download a starter notebook: Download Julia.ipynb

  1. Upload the notebook:

    • Click the Upload button in the top‑left of the notebook UI
    • Select the downloaded file and confirm
  2. Open it:

    • The file appears in the left panel — double‑click to open
  3. Run it to verify everything works


Install and use Julia libraries

Add a new code cell and run:

using Pkg
Pkg.add("DataFrames")

Then use the package in your notebook:

using DataFrames
df = DataFrame(a = 1:3, b = ["x", "y", "z"])
first(df, 3)

Julia Library Install