From 2053265594ff00bfe2afea89c2fbd977b1dc4a66 Mon Sep 17 00:00:00 2001 From: Timo Dickscheid Date: Tue, 18 Jun 2024 18:03:15 +0200 Subject: [PATCH] upgrade siibra as first step in #1 --- 01-BasicConcepts.ipynb | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/01-BasicConcepts.ipynb b/01-BasicConcepts.ipynb index b3eea5a..4f61621 100644 --- a/01-BasicConcepts.ipynb +++ b/01-BasicConcepts.ipynb @@ -7,6 +7,16 @@ "## Import siibra" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# first off, update siibra to latest release\n", + "!pip install -U siibra" + ] + }, { "cell_type": "code", "execution_count": null, @@ -29,7 +39,8 @@ "source": [ "# We populate the cache with common data items here, so we need not wait later on.\n", "# This is not usually needed - siibra fetches data only as needed.\n", - "siibra.warm_cache()" + "with siibra.QUIET:\n", + " siibra.warm_cache()" ] }, {