File size: 286 Bytes
905b8ff
 
 
c7b063e
 
 
905b8ff
c7b063e
 
 
3e6e915
c7b063e
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
set -e

echo "πŸš€ Installing Python dependencies"
python -m pip install --upgrade pip
python -m pip install -r requirements.txt

# Create caches and tmp directories used by code
mkdir -p model_cache tmp
chmod -R 777 model_cache tmp

echo "βœ… Python dependencies installed"