-
-
Notifications
You must be signed in to change notification settings - Fork 293
π Package management
Pluto has a built-in package manager, which means:
- π Packages are automatically installed when you use
import
orusing
. - π 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.
Pluto will automatically install or remove packages while you work on your notebook. When you import a new package, Pluto will install it:
π Most packages will write installation instructions in their documentation: like "Run
julia> ] install Example
to installExample
". If you are using Pluto, you can skip these instructions, and import the package directly, usingimport Example
orusing Example
.
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.
When you delete the 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.
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.
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.
Pkg supports additional private or public registries, which can be added in the Julia REPL with ] registry add https://github.com/myuser/MyRegistry.git
. The simplest way to create your own Pkg registry is LocalRegistry.jl.
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
: fonsp / Pluto file format demo.jl
.
π We encourage you to open Pluto, import some packages and look at the file!
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.
The Manifest.toml
is designed to be (generally) forwards compatible: you can upgrade Julia and use an old manifest. However, the Manifest.toml
is not always backwards 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
.
Pluto's package manager is enabled for all users, for ease of use and to promote reproducibility in scientific computing. There is no option to disable the behaviour globally (for your entire Pluto session). Instead, Pluto will detect notebooks that use Pkg.activate
to set up an environment explicitly, and uses the old behaviour for those notebooks.
The philosophy here is that everyone should have a reproducible package environment by default, without having to do anything. This takes priority over other use cases, and hence not using the built-in package manager requires some extra work.
Any notebook that calls Pkg.activate
will not use Pluto's package management, and run in 'backwards compatibility mode'. The Pkg.activate
call should be placed directly in your notebook code: it is detecting using the same syntax analysis used for reactivity.
If you do not intend on sharing a notebook file and you want to use your global package environment (called (v1.6)
or similar, the one you get when you launch the Julia REPL), then you can call Pkg.activate()
without any arguments.
π If you are developing a package, then activating your global environment is an easy way to test your local version in Pluto.
This "global environment" pattern can be placed at the top of a notebook:
begin
import Pkg
# careful: this is _not_ a reproducible environment
# activate the global environment
Pkg.activate()
using Plots, PlutoUI, LinearAlgeabra
end
This will 1) activate a temporary environment using Pkg.activate
, 2) add the required packages, 3) import them with using
. When running this in Pluto (try it out!), you will notice that the status marks next to packages disappear, and Pluto is running in 'backwards compatibility mode'.
When adding packages, Pluto's default package management will always install the latest version from the registry. If you need to install a specific version or branch of a package, or a package is not registered, you can use a "Pkg cell".
A common pattern is a so-called "Pkg cell", placed at the top of a notebook:
begin
import Pkg
# activate a temporary environment
Pkg.activate(mktempdir())
Pkg.add([
Pkg.PackageSpec(name="Plots", version="1"),
Pkg.PackageSpec(name="PlutoUI", version="0.7"),
])
using Plots, PlutoUI, LinearAlgebra
end
This will 1) activate a temporary environment using Pkg.activate
, 2) add the required packages, 3) import them with using
. When running this in Pluto (try it out!), you will notice that the status marks next to packages disappear, and Pluto is running in 'backwards compatibility mode'.
Placing all code in a single begin
block ensures that the lines will run in the correct order.
π You can use this helper tool to generate a "Pkg cell" automatically!
Pluto.jl includes a helper function Pluto.activate_notebook_environment
that activates a notebook Pkg environment in the REPL:
julia> import Pluto
julia> Pluto.activate_notebook_environment("~/Documents/hello.jl")
julia> ]
(hello.jl) > status
After activating a notebook environment, you can use the Pkg REPL to view or modify the embedded environment. Changes from either side are synchronised (i.e. Pkg REPL changes are written to the notebook, editing the notebook updates the Pkg REPL env). Watch the demo video: