MuseV icon indicating copy to clipboard operation
MuseV copied to clipboard

No module named 'musev'

Open ykhasia opened this issue 1 year ago • 7 comments

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

ykhasia avatar Apr 21 '24 00:04 ykhasia

+1

SiuLeeBoss avatar Apr 21 '24 12:04 SiuLeeBoss

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

xzqjack avatar Apr 24 '24 07:04 xzqjack

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

请问解决了没?

Weststreet avatar May 18 '24 08:05 Weststreet

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

gjnave avatar Jun 20 '24 17:06 gjnave

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

Charlz91108112 avatar Jul 17 '24 11:07 Charlz91108112

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

It worked, thanks!

kkkwjr avatar Sep 13 '24 06:09 kkkwjr

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

It worked, thanks!

how to use it?

XyW-Max avatar Sep 26 '24 11:09 XyW-Max