Create install.sh

This commit is contained in:
Marius Ciepluch 2024-07-24 14:31:22 +02:00 committed by GitHub
parent a944bb1d63
commit 3dbba8ca03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

11
dependencies/install.sh vendored Normal file
View File

@ -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