Spaces:
Running
on
Zero
Running
on
Zero
#!/bin/bash | |
CONDA_ENV=$(head -1 /code/environment.yml | cut -d" " -f2) | |
eval "$(conda shell.bash hook)" | |
conda activate $CONDA_ENV | |
# Install fluidsynth using conda | |
conda install conda-forge::fluidsynth | |
# Install pip packages | |
pip install -r requirements.txt | |
# Run the app | |
python app.py |