Initializing a new project

Creating a Julia project

From within your notebook, initialize the Julia project:

# You only need to run this once
# Don't leave it in the notebook
using Pkg
Pkg.activate(".")
Pkg.add("IJulia")

This will create a Project.toml and Manifest.toml that records the state of all your installed packages (and transitive dependencies). Pathbird will use these files to re-create your environment when you upload the codex.

Make sure to restart the kernel after you've done this.