Anthropocene
Anthropocene
@Zeqiang-Lai model already downloaded but met the same "model path not found" error when runing ``` from hy3dgen.texgen import Hunyuan3DPaintPipeline from hy3dgen.shapegen import Hunyuan3DDiTFlowMatchingPipeline # let's generate a mesh first...
https://github.com/Tencent/Hunyuan3D-2/blob/main/hy3dgen/texgen/pipelines.py#L63 change the code to ``` try: import huggingface_hub except ImportError: logger.warning( "You need to install HuggingFace Hub to load models from the hub." ) raise RuntimeError(f"Model path {model_path} not...
Well, the best practice is to setup a docker environment. Already done.
@yuedajiong 老哥你这是 comfyUI 本地部署的吗?
it seems we'd better run the cpp directly instead using his UI .....
it should be written as ``` try: import huggingface_hub except ImportError: logger.warning( "You need to install HuggingFace Hub to load models from the hub." ) raise RuntimeError(f"Model path {model_path} not...
Looks like python environment not correctly set. I personally prefer runing `source venv/bin/activate` first. In the file named "venv/bin/activate", you can see what environment variables are set.