Ajay Karthick Senthil Kumar
add install.sh
b538230
raw
history blame
566 Bytes
#!/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