Hello World in Julia
Jupyter Notebook
May 6, 2023
I had to choose a topic for my presentation so I chose Julia. Starting off by installing it. Here are the steps to add Julia to Jupyter Notebook:
Download Julia through this.
Open the Julia command line and write:
using Pkg
Press Enter
Then type:
Pkg.add(“IJulia”)
Press Enter
Wait for the installation to complete.
Create a new notebook in Jupyter.
Select Julia as the kernel.
Write this command in a cell:
println(“Hello World”)
Run the cell.
That’s it for now. See you later.