deepfakes / faceswap

Deepfakes Software For All
https://www.faceswap.dev
GNU General Public License v3.0
51.92k stars 13.17k forks source link

the gpu docker image not finding the requirements #1401

Open fady17 opened 2 weeks ago

fady17 commented 2 weeks ago

nividia docker image

it keep failing clonning the rep so i increased the buffer and the timeout and the number of retries : RUN git config --global http.postBuffer 1048576000 RUN git config --global http.lowSpeedLimit 0 RUN git config --global http.lowSpeedTime 999999 RUN for i in {1..5}; do git clone --depth 1 --no-single-branch https://github.com/deepfakes/faceswap.git && break || sleep 15; done

RUN python -m pip --no-cache-dir install -r requirements_nvidia.txt 24 |
25 |

ERROR: failed to solve: process "/bin/sh -c python -m pip --no-cache-dir install -r requirements_nvidia.txt" did not complete successfully: exit code: 1 but it still can't find the requirement i fixed it manually but you should look into it.

**

ElixTanMerquri commented 1 day ago

requirements for cpu doesn't work also. error is at installation of tensorflow (they've changed to using python3 to do installation). I've moved it to dockerfile level but still facing some issues.

Can you share how you fixed it?