Make requirements with only the packages you need
项目导入的 module 越多,导出的依赖库就越多,尤其是很多系统自带的库一并给导出来来了。
Take a video and replace the face in it with a face of your choice. You only need one image of the desired face. No dataset, no training.
https://github.com/s0md3v/roop
这几天一直在折腾faceswap,安装过程中发现各种神奇的bug。首先第一个就是github无法正常访问的问题,clone代码的时候各种提示服务器连接超时。可以修改hosts文件添加以下内容:
# github
#192.30.255.113 github.com
#192.30.255.113 gist.github.com
#151.101.52.133 raw.githubusercontent.com
#151.101.53.194 github.global.ssl.fastly.net
140.82.114.4 github.com
199.232.69.194 github.global.ssl.fastly.net
添加之后执行dns刷新:
ipconfig /flushdns
然后github基本就可以正常访问了。安装完成之后发现出现了另外一个问题,提示没有tensorflow-gpu环境。但是尝试执行安装时又提示下面的错误:
阿里云的主机确实蛋疼,连pip都更新不了也是醉了。参考这个帖子的办法,修改更新服务器吧:
mkdir ~/.pip
cat > ~/.pip/pip.conf < < EOF
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/
EOF