log2ml/dependencies/install.sh

12 lines
316 B
Bash
Raw Normal View History

2024-07-24 12:31:22 +00:00
#!/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