# Julia

Julia is not part of standard setup, but it takes only a few steps to add.

  1. Start by creating Conda environment named Julia with Julia package installed:
mamba create -n julia -c conda-forge -y julia
  1. When you environment is created activate it:
conda activate julia
  1. Then start Julia repl:
julia
  1. Install Julia kernel for Jupyter notebooks:
using Pkg
Pkg.add("IJulia")
  1. Reload you Workbench environment and Julia icons should appear.
Last Updated: 5/14/2024