Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 26cadbc

Browse files
committed
update code
1 parent f4bc02b commit 26cadbc

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

linux/install_requirements.sh renamed to cent_os/install_requirements.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,19 @@ cd ffmpeg-release-amd64-static
2121
ln -s ffmpeg /usr/bin/ffmpeg
2222
ln -s ffprobe /usr/bin/ffprobe
2323

24+
# install imgcat
25+
ln -s /root/DeepFaceLab_MP/tools/imgcat /usr/bin/imgcat
26+
chmod 777 /usr/bin/imgcat
27+
28+
29+
# install docker
30+
yum install docker
31+
mv /var/lib/docker /data/docker
32+
ln -s /data/docker /var/lib/docker
33+
service docker start
34+
docker pull xychelsea/deepfacelab:latest-gpu
35+
36+
docker run --rm -it -v workspace:/usr/local/deepface/workspace \
37+
xychelsea/deepfacelab:latest-gpu /bin/bash
38+
39+
service docker stop
File renamed without changes.
File renamed without changes.

linux/setup_linux.sh renamed to cent_os/setup_linux.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ fi
3434
if [ ! -n "$(conda info --envs | grep dfl)" ]; then
3535
echo "creating dfl env (using python verison=3.6) ..."
3636
conda create -n dfl python=3.6
37+
conda create -y -n deepfacelab python=3.6.6 cudatoolkit=9.0 cudnn=7.3.1
3738
echo "successfully create dfl env!!"
3839
else
3940
echo "dfl env exists"

0 commit comments

Comments
 (0)