Initial commit

This commit is contained in:
Oleksandr Chychkan
2020-07-06 19:04:19 -07:00
commit ec4d3fb23f
26 changed files with 902 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env bash
cd "$(dirname $0)/.."
mkdir -p .dfl
mkdir -p workspace
if [ ! -d .dfl/DeepFaceLab ]; then
echo "Cloning DeepFaceLab"
cd .dfl
git clone "https://github.com/iperov/DeepFaceLab.git"
fi
if [ ! -d .dfl/env ]; then
virtualenv -p python3 .dfl/env
fi
source .dfl/env/bin/activate
pip install -r requirements.txt
echo "Done."