OpenTalker / video-retalking

[SIGGRAPH Asia 2022] VideoReTalking: Audio-based Lip Synchronization for Talking Head Video Editing In the Wild
https://opentalker.github.io/video-retalking/
Apache License 2.0
6.69k stars 983 forks source link

ModuleNotFoundError: No module named 'face3d' #78

Open beena1472 opened 1 year ago

beena1472 commented 1 year ago

ModuleNotFoundError: No module named 'face3d' after using 'pip install face3d' , ERROR: Could not find a version that satisfies the requirement face3d (from versions: none) ERROR: No matching distribution found for face3d

jake-nz commented 11 months ago

face3d is in this repo at third_part/face3d. If your cwd is not the folder where this repo is then python might not find it. e.g:

cd ~
python3 video-retalking/inference.py <options here>
# ModuleNotFoundError: No module named 'face3d' 

vs

cd ~/video-retalking
python3 inference.py <options here>
# Success!
lige1012 commented 9 months ago

This is so interesting. Because of this error, I have been struggling for a day. Fortunately, I saw your guidance.