RoopUnleashedv8 / Massed_Compute_Install.sh
fnorby777's picture
Initial commit
ab0dd0b
pip install requests
pip install tqdm
sudo apt update
sudo apt install software-properties-common --yes
sudo apt install git-lfs --yes
sudo apt install ffmpeg --yes
git lfs install
#!/bin/bash
# Clone the roop repository
git clone https://bitbucket.org/secourses/rop-unleash
# Change directory to roop
cd rop-unleash
# Create a Python virtual environment
python3 -m venv venv
# Activate the virtual environment
source venv/bin/activate
cd ..
# Install onnxruntime-gpu and requirements
pip install -r requirements.txt
python3 Fix.py
git lfs install
cd ..
git clone --depth 1 https://huggingface.co/MonsterMMORPG/examples2 Example_Face_Video
cd Example_Face_Video
rm -rf .git
echo "All install completed. Please verify no errors."
# Pause in a bash script could be achieved with `read` if needed, but typically you just let the script end.
# read -p "Press enter to continue"