mirror of
https://github.com/norandom/log2ml.git
synced 2025-04-19 15:21:27 +00:00
12 lines
319 B
Bash
12 lines
319 B
Bash
#!/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/log2ml/main/dependencies/requirements.gpu.txt"
|
|
|
|
else
|
|
echo "This does not appear to be a Google Colab environment."
|
|
fi
|