From 3dbba8ca03b0cd0816bce305a5bd9eda46c94538 Mon Sep 17 00:00:00 2001 From: Marius Ciepluch <11855163+norandom@users.noreply.github.com> Date: Wed, 24 Jul 2024 14:31:22 +0200 Subject: [PATCH] Create install.sh --- dependencies/install.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 dependencies/install.sh diff --git a/dependencies/install.sh b/dependencies/install.sh new file mode 100644 index 0000000..08167e5 --- /dev/null +++ b/dependencies/install.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +if [ -d "/content" ]; then + echo "This appears to be a Google Colab environment." + + echo "Installing dependencies" + pip install -r "https://raw.githubusercontent.com/norandom/project_bookworm/main/requirements.gpu.txt" + +else + echo "This does not appear to be a Google Colab environment." +fi