File tree Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,19 @@ cd ffmpeg-release-amd64-static
2121ln -s ffmpeg /usr/bin/ffmpeg
2222ln -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.
Original file line number Diff line number Diff line change 3434if [ ! -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!!"
3839else
3940 echo " dfl env exists"
You can’t perform that action at this time.
0 commit comments