From 69da78c13a94dba2a6d42f26a546bf4a02c32981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Fri, 10 Dec 2021 11:30:37 +0100 Subject: [PATCH] Disable consolidation in distributed notebook, closes #786 --- .../explore/distributed_portals_with_elixir.livemd | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/livebook/notebook/explore/distributed_portals_with_elixir.livemd b/lib/livebook/notebook/explore/distributed_portals_with_elixir.livemd index 80a1c203c..90397471b 100644 --- a/lib/livebook/notebook/explore/distributed_portals_with_elixir.livemd +++ b/lib/livebook/notebook/explore/distributed_portals_with_elixir.livemd @@ -199,11 +199,18 @@ inputs to pass different values to our code. To render inputs, we need to install the [Kino](https://github.com/livebook-dev/kino) library: ```elixir -Mix.install([ - {:kino, "~> 0.4.1"} -]) +Mix.install( + [ + {:kino, "~> 0.4.1"} + ], + consolidate_protocols: false +) ``` +> Note: the `consolidate_protocols: false` option is not usually +> given, but it will be handy when we discuss protocols later +> in this notebook. + Kino allows our code notebooks to control Livebook itself. Let's render an input by evaluating the cell below: