Deepfakes Faceswap Installation Setup Tutorial Manjaro Linux
First Install the Nvidia Drivers in:
Manjaro Settings → Hardware Configuration → Auto Install Proprietary Drivers
Ensure git is installed.
Then Install Faceswap:
forum.faceswap.dev/viewtopic.php?f=4&t=68
1) Install Miniconda3 from:
repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash MINICONDAFILENAME.sh
2) Create a new Virtual Enviroment
conda create -n faceswap python=3.6
3) Change your current Enviroment to the new Enviroment
conda activate faceswap
4) Download Faceswap
git clone github.com/deepfakes/faceswap.git
5) Change to the newly downloaded Faceswap directory
cd faceswap
6) Setup Faceswap
python setup.py
Start script:
#!/bin/bash
source ~/miniconda3/etc/profile.d/conda.sh
conda activate faceswap
cd ~/faceswap
python faceswap.py gui
Read more here: Source link