From a3a036fbe4fef3e28f6d00a3a3805d24c23a01ef Mon Sep 17 00:00:00 2001 From: Bhagyesh Kumar <104337027+invi-bhagyesh@users.noreply.github.com> Date: Tue, 23 Sep 2025 23:14:45 +0530 Subject: [PATCH] Fix (#652) conda install by auto-accepting license terms --- notebooks/bonus-unit1/bonus_unit1.ipynb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/notebooks/bonus-unit1/bonus_unit1.ipynb b/notebooks/bonus-unit1/bonus_unit1.ipynb index a85452b3..421b8c68 100644 --- a/notebooks/bonus-unit1/bonus_unit1.ipynb +++ b/notebooks/bonus-unit1/bonus_unit1.ipynb @@ -218,6 +218,10 @@ "!chmod +x Miniconda3-latest-Linux-x86_64.sh\n", "!./Miniconda3-latest-Linux-x86_64.sh -b -f -p /usr/local\n", "\n", + "# Accept Terms and conditions for installing conda\n", + "!conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main\n", + "!conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r\n", + "\n", "# Activate Miniconda and install Python ver 3.10.12\n", "!source /usr/local/bin/activate\n", "!conda install -q -y --prefix /usr/local python=3.10.12 ujson # Specify the version here\n",