Spaces:
Paused
Paused
File size: 149 Bytes
725472c | 1 2 3 4 5 6 7 8 9 | #!/bin/sh
set -e
apt-get update && apt-get install -y python3 python3-pip
if [ -f requirements.txt ]; then
pip3 install -r requirements.txt
fi
|