Difference between revisions of "DeepFaceLab"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (→RHEL 8) |
Michael.mast (talk | contribs) (→RHEL 8) |
||
Line 5: | Line 5: | ||
As of this writing, pip3.6 will install tensorflow 2.3.0 which does not support configproto<ref>https://stackoverflow.com/questions/58726388/how-can-i-fix-attributeerror-module-tensorflow-has-no-attribute-configproto?noredirect=1&lq=1</ref>. The fix is to install an older version, in this case I just used what was listed on the stackoverflow post. | As of this writing, pip3.6 will install tensorflow 2.3.0 which does not support configproto<ref>https://stackoverflow.com/questions/58726388/how-can-i-fix-attributeerror-module-tensorflow-has-no-attribute-configproto?noredirect=1&lq=1</ref>. The fix is to install an older version, in this case I just used what was listed on the stackoverflow post. | ||
<pre> | <pre> | ||
+ | mkdir build && cd build | ||
sudo dnf groupinstall "Development Tools" | sudo dnf groupinstall "Development Tools" | ||
sudo dnf install git | sudo dnf install git | ||
Line 11: | Line 12: | ||
make | make | ||
sudo make install | sudo make install | ||
+ | cd ../ | ||
+ | git clone https://github.com/nagadit/DeepFaceLab_Linux.git && cd DeepFaceLab_Linux/scripts | ||
+ | chmod +x * | ||
+ | git clone https://github.com/iperov/DeepFaceLab.git | ||
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 08:42, 17 September 2020
RHEL 8
[1] [2] [3] As of this writing, pip3.6 will install tensorflow 2.3.0 which does not support configproto[4]. The fix is to install an older version, in this case I just used what was listed on the stackoverflow post.
mkdir build && cd build sudo 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 cd ../ git clone https://github.com/nagadit/DeepFaceLab_Linux.git && cd DeepFaceLab_Linux/scripts chmod +x * git clone https://github.com/iperov/DeepFaceLab.git 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 pip3.6 install --user tensorflow==1.14
pip3.6 install --user pillow pip3.6 install --user scipy
- ↑ https://linuxconfig.org/how-to-install-ffmpeg-on-redhat-8
- ↑ https://pub.dfblue.com/pub/2019-10-25-deepfacelab-tutorial
- ↑ https://pypi.org/project/opencv-python/
- ↑ https://stackoverflow.com/questions/58726388/how-can-i-fix-attributeerror-module-tensorflow-has-no-attribute-configproto?noredirect=1&lq=1