Pluto’s built-in package management

Pluto has a built-in package manager, which means:

  1. 🎈 Packages are automatically installed when you use import or using.
  2. 🎈 Your package environment is stored inside the notebook file. When someone else opens your notebook with Pluto, the exact same package environment will be used, and packages will work on their computer.

🙋 These two features are designed to make it easy to write and share reproducible notebooks.




Basic usage

Installing and using packages

Pluto will automatically install or remove packages while you work on your notebook. When you import a new package, Pluto will install it:

Schermafbeelding 2021-06-10 om 20 35 52

🙋 Most packages will write installation instructions in their documentation: like “Run julia> ] install Example to install Example”. If you are using Pluto, you should skip these instructions, and import the package directly, using import Example or using Example.

Logs

Installing packages can take some time, especially when starting Julia for the first time. Click on the status mark next to a package to view the installation progress. You can click on the 📄 icon to view the logs.



Removing packages

Removing packages is automatic: when you delete code that imports a package, it will be uninstalled from the package environment. It is recommended to restart the notebook process afterwards to get a fresh start.



Updating packages

You can search for and install any available updates by clicking on the 📄 icon. A backup of your notebook file will be created in the same folder as your notebook, in case the new versions do not work as expected.

Update button






Good to know

Based on Pkg

Pluto’s package management is a wrapper around Pkg.jl, Julia’s built-in package manager. Packages are installed from the General registry.

🙋 You can discover all available packages on juliahub.com.

Isolated package environment

Every notebook runs in its own isolated package environment. This ensures that your notebook code will not be influenced by packages installed elsewhere. (The LOAD_PATH is set to ["@", "@stdlib"].)

Notebook file

Pluto stores the contents of Project.toml and Manifest.toml directly in the notebook file. For forwards-backwards compatibility, this is done using two extra “cells” at the bottom of the file, containing the two files as string literals. For example, here is a notebook that imports HypertextLiteral and PlutoUI: example file.

🙋 Try it out! Open Pluto, import some packages and look at the notebook file!

Fully reproducible environments

When someone else opens your notebook for the first time, Pluto will install all required packages based on the information in the Manifest.toml file. This means that the exact same versions of all packages you used in the notebook will be installed, ensuring your work is fully reproducible when shared with others.

Compatibility across Pluto versions

When opening an old Pluto notebook that does not have embedded project files, Pluto will generate them as if you typed those imports for the first time. If a call to Pkg.activate is made, the notebook will run in ‘backwards compatibility mode’, using the same environment and behaviour as old Pluto versions.

Compatibility across Julia versions

The Manifest.toml is designed to be (generally) backwards compatible: you can upgrade Julia and use an old manifest. However, the Manifest.toml is not always forwards compatible: a manifest generated generated with a newer version of Julia might not run on older versions.

Pluto will always try to load the embedded manifest, and if it fails, it will discard the manifest (leaving only Project.toml) and try again. This is one reason why Pluto automatically adds [compat] ranges for each package in the Project.toml.

Custom registries

Pkg.jl supports additional private or public registries, which can be added in the Julia REPL with ] registry add https://github.com/myuser/MyRegistry.git, and this is also supported by Pluto’s package managemer.

However, note that registries are not stored in the Project.toml/Manifest.toml files, which means that other people can only open your notebook if they added the custom registry before doing so. Alternatively, you can use a “Pkg cell” (more on this later) where you add the registry before adding packages.





Learn more: advanced Pkg management