Difference between revisions of "DeepFaceLab"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (→RHEL 8) |
Michael.mast (talk | contribs) (→RHEL 8) |
||
| Line 1: | Line 1: | ||
==RHEL 8== | ==RHEL 8== | ||
| + | <ref>https://linuxconfig.org/how-to-install-ffmpeg-on-redhat-8</ref> | ||
| + | <ref>https://pub.dfblue.com/pub/2019-10-25-deepfacelab-tutorial</ref> | ||
<pre> | <pre> | ||
| + | dnf groupinstall "Development Tools" | ||
| + | sudo dnf install git | ||
| + | git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg && cd ffmpeg | ||
| + | ./configure --disable-x86asm | ||
| + | make | ||
| + | sudo make install | ||
sudo pip3.6 install --upgrade pip | sudo pip3.6 install --upgrade pip | ||
pip3.6 install --user colorama | pip3.6 install --user colorama | ||
Revision as of 14:57, 16 September 2020
RHEL 8
dnf groupinstall "Development Tools" sudo dnf install git git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg && cd ffmpeg ./configure --disable-x86asm make sudo make install sudo pip3.6 install --upgrade pip pip3.6 install --user colorama pip3.6 install --user numpy pip3.6 install --user scikit-build pip3.6 install --user opencv-python-headless pip3.6 install --user tqdm pip3.6 install --user ffmpeg-python