text2midi / run.sh
keshavbhandari's picture
Trying with docker
e105841
raw
history blame
No virus
290 Bytes
#!/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 -c conda-forge fluidsynth -y
# Install pip packages
pip install -r requirements.txt
# Run the app
python app.py