TMElyralab / MuseV

MuseV: Infinite-length and High Fidelity Virtual Human Video Generation with Visual Conditioned Parallel Denoising
Other
2.29k stars 247 forks source link

No module named 'musev' #92

Open ykhasia opened 4 months ago

ykhasia commented 4 months ago

我按照 "https://github.com/TMElyralab/MuseV/blob/main/README-zh.md" 这个说明,用windows的docker desktop安装完毕后,运行 python app.py,提示【ModuleNotFoundError: No module named 'musev' 】。什么原因? image

SiuLeeBoss commented 4 months ago

+1

xzqjack commented 4 months ago

windows下的环境变量设置可能不一样

Weststreet commented 3 months ago

我按照 "https://github.com/TMElyralab/MuseV/blob/main/README-zh.md" 这个说明,用windows的docker desktop安装完毕后,运行 python app.py,提示【ModuleNotFoundError: No module named 'musev' 】。什么原因? image

请问解决了没?

gjnave commented 2 months ago

Did you find an answeert to this? I had the same problem.. the file that imports MuseV is found in scripts/inference .. and so it needs to get back to ./musev to find the import

Charlz91108112 commented 1 month ago

What you can do is simply add path to import musev. Here is how you do it:

import sys sys.path.append("../../../MuseV")

This will definitely work