# Julia
Julia is not part of standard setup, but it takes only a few steps to add.
- Start by creating Conda environment named Julia with Julia package installed:
mamba create -n julia -c conda-forge -y julia
- When you environment is created activate it:
conda activate julia
- Then start Julia repl:
julia
- Install Julia kernel for Jupyter notebooks:
using Pkg
Pkg.add("IJulia")
- Reload you Workbench environment and Julia icons should appear.