From 03597c7f70824fbc7bc1942326758d33b4014bd4 Mon Sep 17 00:00:00 2001 From: Jason Walker Date: Thu, 4 May 2023 12:37:25 -0500 Subject: [PATCH] Update r-essentials install to include conda-forge channel for resolving packages. --- lectures/week_01/bfx_workshop_01_overview.ipynb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lectures/week_01/bfx_workshop_01_overview.ipynb b/lectures/week_01/bfx_workshop_01_overview.ipynb index 899fba7..070a54a 100644 --- a/lectures/week_01/bfx_workshop_01_overview.ipynb +++ b/lectures/week_01/bfx_workshop_01_overview.ipynb @@ -122,6 +122,12 @@ "\n", "```\n", "conda install r-essentials\n", + "```\n", + "\n", + "If the above command fails due to the package missing from existing channels, try again after adding conda-forge as a channel to pull packages from.\n", + "\n", + "```\n", + "conda config --append channels conda-forge\n", "```" ] }, @@ -405,7 +411,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.6" + "version": "3.10.10" } }, "nbformat": 4,