File size: 566 Bytes
b538230
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

echo "Installing Miniconda and setup the environment"

# Install Miniconda (if it's not already present)
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/miniconda
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda init bash

echo "Installing praat-parselmouth directly in the current environment"
conda install -c conda-forge praat-parselmouth -y

echo "Continue with your app execution (Hugging Face will have already installed the pip dependencies)"
streamlit run app.py