Page 1 of 1

Google Colab does not supporting Python 3.7

Posted: Wed Aug 19, 2020 1:14 pm
by geoxyz123

Hi,

I have noticed that the latest version of Faceswap requires Python 3.7.

I am running the training on Google Colab which unfortunately supports Python up to version 3.6.9 only.

Is there any way to avoid the call that requires Python 3.7 while executing Faceswap? Or is there away to download and install an older version of Faceswap into Google Colab, such that Python 3.7 is not required?

I am using the following call in Colab to get the current Faceswap version:

Code: Select all

!git clone https://github.com/deepfakes/faceswap.git

Help would be much appreciated!

Best


Re: Google Colab does not supporting Python 3.7

Posted: Wed Aug 19, 2020 11:55 pm
by torzdf

You can still use version 1 of Faceswap whilst we wait for Google to catch up with the 21st Century

Code: Select all

!git clone --single-branch --branch r1.0 https://github.com/deepfakes/faceswap.git

Re: Google Colab does not supporting Python 3.7

Posted: Fri Aug 21, 2020 12:36 pm
by geoxyz123
torzdf wrote: Wed Aug 19, 2020 11:55 pm

You can still use version 1 of Faceswap whilst we wait for Google to catch up with the 21st Century

You, sir, are a genius. Thank you very much.