multimodal_module / install.sh
Princeaka's picture
Update install.sh
c7b063e verified
raw
history blame
286 Bytes
#!/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"